UNPKG

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