/// export interface RecoverPasswordFormInterface { handleAction: (type: string, data?: any) => void; } declare const RecoverPasswordForm: ({ handleAction, }: RecoverPasswordFormInterface) => JSX.Element; export default RecoverPasswordForm;