///
export declare const useSmsVerification: (type: 'login' | 'verify-only') => {
error: Error | undefined;
formattedPhone: string;
isLoading: boolean;
isValid: boolean;
onSubmit: (variables: string) => void;
retryOneTimePassword: () => Promise;
setError: import("react").Dispatch>;
};