//#region src/components-page/auth-page.d.ts type Props = { noPasswordRepeat?: boolean; firstTab?: 'magic-link' | 'password'; fullPage?: boolean; type: 'sign-in' | 'sign-up'; automaticRedirect?: boolean; extraInfo?: React.ReactNode; mockProject?: { config: { signUpEnabled: boolean; credentialEnabled: boolean; passkeyEnabled: boolean; magicLinkEnabled: boolean; oauthProviders: { id: string; }[]; }; }; }; declare function AuthPage(props: Props): import("react/jsx-runtime").JSX.Element; //#endregion export { AuthPage }; //# sourceMappingURL=auth-page.d.ts.map