import { FunctionComponent, ReactElement, ReactNode } from 'react'; export type ProtectedProps = { guard: boolean; children?: ReactNode; }; export declare const Protected: FunctionComponent; export declare function isProtectedReactElement(child: ReactNode): child is ReactElement; //# sourceMappingURL=Protected.d.ts.map