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; bsSize?: Sizes; componentClass?: React.ReactType; id?: string; inputRef?: (instance: HTMLInputElement) => void; type?: string; } } declare class FormControl extends React.Component { public static Feedback: typeof FormControlFeedback; public static Static: typeof FormControlStatic; } export = FormControl;