import { FC, HTMLProps } from "react"; export interface FormWrapperProps extends HTMLProps { title: string; submitBtnTitle: string; disabled: boolean; onClose: () => void; onSubmit: (...args: any) => void; children: any; } declare const FormWrapper: FC; export default FormWrapper;