import * as React from 'react'; import { Sizes } from 'react-bootstrap'; import FormControlFeedback = require('./FormControlFeedback'); import FormControlStatic = require('./FormControlStatic'); declare namespace FormControl { export interface FormControlProps extends React.HTMLProps { bsClass?: string | undefined; bsSize?: Sizes | undefined; componentClass?: React.ElementType | undefined; id?: string | undefined; inputRef?: ((instance: HTMLInputElement) => void) | undefined; type?: string | undefined; } } declare class FormControl extends React.Component { public static Feedback: typeof FormControlFeedback; public static Static: typeof FormControlStatic; } export = FormControl;