export interface SendVerificationEmailProps {
    mode?: "code" | "link";
    tokenFormat?: "hex" | "numeric" | "alpha" | "alphanumeric";
    tokenLength?: number;
    redirectUrl?: string;
}
declare function useSendVerificationEmail(): (props?: SendVerificationEmailProps) => Promise<{
    success: boolean;
}>;
export default useSendVerificationEmail;
