import * as React from "react";

declare namespace FormControlStatic {
    export interface FormControlStaticProps extends React.HTMLProps<FormControlStatic> {
        bsClass?: string | undefined;
        componentClass?: React.ElementType | undefined;
    }
}
declare class FormControlStatic extends React.Component<FormControlStatic.FormControlStaticProps> {}
export = FormControlStatic;
