UNPKG

@slashid/react

Version:

React SDK for the /id platform

11 lines 700 B
import { Props } from "./authenticating.types"; import { AuthenticatingState } from "../flow/flow.common"; export type AuthenticatingAsAFunctionProps = Omit<AuthenticatingState, "status">; type AuthenticatingTemplateProps = { children?: React.ReactNode | ((renderProps: AuthenticatingAsAFunctionProps) => React.ReactNode); }; export declare function Authenticating({ children }: AuthenticatingTemplateProps): import("react/jsx-runtime").JSX.Element | null; export type AuthenticatingProps = Pick<Props, "flowState">; export declare const AuthenticatingImplementation: ({ flowState, }: AuthenticatingProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map