import { ICustomizable, IGlobalAttributes, IParent } from '../../core'; export interface LabelProps extends IParent, ICustomizable, IGlobalAttributes { htmlFor?: string; } export declare function Label(props: LabelProps): JSX.Element;