export interface UseSignupProps { authenticator?: string; message?: { success?: string; }; } export declare const useSignUp: (props?: UseSignupProps) => { run(): Promise; }; export declare const SignUpForm: ({ authenticatorName: name }: { authenticatorName: string; }) => import("react/jsx-runtime").JSX.Element;