UNPKG

377 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace ControlLabel {
4 export interface ControlLabelProps extends React.HTMLProps<ControlLabel> {
5 bsClass?: string | undefined;
6 htmlFor?: string | undefined;
7 srOnly?: boolean | undefined;
8 }
9}
10declare class ControlLabel extends React.Component<ControlLabel.ControlLabelProps> { }
11export = ControlLabel;