1 | import * as React from "react";
|
2 |
|
3 | declare namespace FormControlStatic {
|
4 | export interface FormControlStaticProps extends React.HTMLProps<FormControlStatic> {
|
5 | bsClass?: string | undefined;
|
6 | componentClass?: React.ElementType | undefined;
|
7 | }
|
8 | }
|
9 | declare class FormControlStatic extends React.Component<FormControlStatic.FormControlStaticProps> {}
|
10 | export = FormControlStatic;
|