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