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; displayName: string; __docgenInfo: { description: string; displayName: string; props: { whatsAppNumber: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handleConfirmation: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handleRedirectToWhatsAppInput: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handleAnotherMethodClick: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handleRequestOTPFailed: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; classes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; useFakeRequest: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; iconBack: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; customLocales: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default MethodConfirmation;