import { default as React, ReactNode, FormEvent } from 'react'; export interface FormProps { onSubmit: (event: FormEvent) => void; children: ReactNode; className?: string; disabled?: boolean; loading?: boolean; autoComplete?: 'on' | 'off'; id?: string; name?: string; noValidate?: boolean; } declare const MemoizedForm: React.NamedExoticComponent; export { MemoizedForm as Form };