import React, { FunctionComponent } from 'react'; import { AuthOptions } from '..'; export declare const SignupPageContext: React.Context<{ [authType: string]: { component: FunctionComponent<{ name: string; }>; }; }>; export declare const SignupPageProvider: (props: { authType: string; component: FunctionComponent<{ name: string; }>; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const useSignUpForms: () => { [authType: string]: AuthOptions["components"]["SignUpForm"]; }; export declare const SignUpPage: () => import("react/jsx-runtime").JSX.Element;