import { type FormType } from '../Form'; interface FormForgotPassProps extends Omit, 'onSubmit'> { style?: React.CSSProperties; onSubmit: (formData: FormType) => void; isError: boolean; isPending: boolean; isSuccess: boolean; errorMsg: string | null | undefined; successMsg: string | null | undefined; onNavigate?: (path: string) => void; footerHeight?: string; linkMainPage?: { link: string; text: string; }; linkLogin?: { link: string; text: string; }; } export declare const FormForgotPass: React.FC; export {};