import React from 'react'; import { MethodConfirmationClassesType } from '../../types'; declare type MethodConfirmationProps = { whatsAppNumber: string; handleConfirmation?: () => void; handleRedirectToWhatsAppInput?: () => void; handleAnotherMethodClick?: () => void; handleRequestOTPFailed?: (msg: string) => void; classes: MethodConfirmationClassesType; useFakeRequest?: boolean; iconBack?: React.ReactNode; customLocales?: { loginWithAnotherMethod?: string; }; }; declare const MethodConfirmation: ({ whatsAppNumber, handleConfirmation, handleRedirectToWhatsAppInput, handleAnotherMethodClick, handleRequestOTPFailed, classes, iconBack, customLocales, }: MethodConfirmationProps) => JSX.Element; export default MethodConfirmation;