UNPKG

305 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;
7 bsStyle?: string;
8 }
9}
10declare class Label extends React.Component<Label.LabelProps> { }
11export = Label;