export interface VerifyEmailProps { token: string; } declare function useVerifyEmail(): (props: VerifyEmailProps) => Promise<{ success: boolean; }>; export default useVerifyEmail;