import { FormEvent } from 'react'; import { Autocomplete, EncTypes, Methods, Targets } from './Types'; interface Props { acceptCharset?: string; action?: string; autoComplete?: Autocomplete; className?: string; children?: any; encType?: EncTypes; id?: string; method?: Methods; name: string; target?: Targets; onBlur?: () => void; onChange?: () => void; onContextMenu?: () => void; onFocus?: () => void; onInput?: () => void; onInvalid?: () => void; onReset?: () => void; onSearch?: () => void; onSelect?: () => void; onSubmit: (event: FormEvent) => void; } export declare function BootstrapForm(props: Props): JSX.Element; export {};