import { FC, ReactNode } from 'react'; export interface FormProps { className?: string; action?: string; onSubmit?: (e: any) => void; method?: string; name?: string; novalidate?: boolean; children?: ReactNode; } declare const Form: FC; export default Form;