import { FormType } from './Form.types'; interface FormProps { className?: React.HTMLAttributes; children?: React.ReactNode; onSubmit: (formData: FormType) => void; style?: React.CSSProperties; isError: boolean; isPending: boolean; isSuccess: boolean; errorMsg: string | null | undefined; successMsg: string | null | undefined; } export declare const Form: React.FC; export {};