import { SignIn, SignUp } from ".."; import { AccountSettings } from "./account-settings"; import { CliAuthConfirmation } from "./cli-auth-confirm"; import { EmailVerification } from "./email-verification"; import { ErrorPage } from "./error-page"; import { ForgotPassword } from "./forgot-password"; import { MagicLinkCallback } from "./magic-link-callback"; import { MFA } from "./mfa"; import { OAuthCallback } from "./oauth-callback"; import { Onboarding } from "./onboarding"; import { PasswordReset } from "./password-reset"; import { SignOut } from "./sign-out"; import { TeamInvitation } from "./team-invitation"; //#region src/components-page/stack-handler-client.d.ts type Components = { SignIn: typeof SignIn; SignUp: typeof SignUp; EmailVerification: typeof EmailVerification; PasswordReset: typeof PasswordReset; ForgotPassword: typeof ForgotPassword; SignOut: typeof SignOut; OAuthCallback: typeof OAuthCallback; MagicLinkCallback: typeof MagicLinkCallback; TeamInvitation: typeof TeamInvitation; ErrorPage: typeof ErrorPage; AccountSettings: typeof AccountSettings; CliAuthConfirmation: typeof CliAuthConfirmation; MFA: typeof MFA; Onboarding: typeof Onboarding; }; type RouteProps = { params: Promise<{ stack?: string[]; }> | { stack?: string[]; }; searchParams: Promise> | Record; }; type BaseHandlerProps = { fullPage: boolean; componentProps?: { [K in keyof Components]?: Parameters[0] }; }; declare function StackHandlerClient(props: BaseHandlerProps & Partial & { location?: string; }): any; //#endregion export { BaseHandlerProps, StackHandlerClient }; //# sourceMappingURL=stack-handler-client.d.ts.map