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