import * as React from 'react'; import { CSSModule } from './utils'; import { ColumnProps } from './Col'; export interface LabelProps extends React.LabelHTMLAttributes { [key: string]: any; hidden?: boolean; check?: boolean; size?: string; disabled?: boolean; for?: string; tag?: React.ElementType; cssModule?: CSSModule; xs?: ColumnProps; sm?: ColumnProps; md?: ColumnProps; lg?: ColumnProps; xl?: ColumnProps; xxl?: ColumnProps; // custom widths widths?: string[]; } declare class Label extends React.Component {} export default Label;