1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 |
|
4 | declare namespace FormGroup {
|
5 | export interface FormGroupProps extends React.HTMLProps<FormGroup> {
|
6 | bsClass?: string | undefined;
|
7 | bsSize?: Sizes | undefined;
|
8 | controlId?: string | undefined;
|
9 | validationState?: "success" | "warning" | "error" | null | undefined;
|
10 | }
|
11 | }
|
12 | declare class FormGroup extends React.Component<FormGroup.FormGroupProps> {}
|
13 | export = FormGroup;
|