import { OpenfortError } from '../../core/errors'; export type OTPResponse = { error?: OpenfortError; sentTo?: 'email' | 'phone'; email?: string; phone?: string; }; export declare function useRecoveryOTP(): { isEnabled: boolean; requestOTP: () => Promise; };