1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 |
|
4 | declare namespace Label {
|
5 | export interface LabelProps extends React.HTMLProps<Label> {
|
6 | bsSize?: Sizes | undefined;
|
7 | bsStyle?: string | undefined;
|
8 | }
|
9 | }
|
10 | declare class Label extends React.Component<Label.LabelProps> {}
|
11 | export = Label;
|