import type { AuthError, AuthUser } from "../../lib/types.js";
export interface SignupFlowProps {
    onSuccess?: (user: AuthUser) => void;
    onError?: (error: AuthError) => void;
    className?: string;
}
export declare function SignupFlow({ onSuccess, onError, className, }: SignupFlowProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SignupFlow.d.ts.map