import { type LeadRequest } from '../../api/LeadServiceAPI'; import type { OnCloseProps } from '../../model/OnCloseProps'; export declare const TIME_TO_RESEND = 180; export interface VerifyPhoneDialogProps extends OnCloseProps { phone: string; onSuccess?: (smsCode?: string) => void; formatData?: LeadRequest; reqId?: string; } export declare const VerifyPhoneDialog: import("@redneckz/uni-jsx").UNIComponent;