import * as React from 'react'; import { StandardProps } from '../../common'; export interface LabelProps extends StandardProps { /** * The content of the label. */ children?: React.ReactNode; /** * The displayed tooltip, if any. */ toolTip?: string; /** * Sets the label into an attached mode. */ attached?: boolean; } /** * The label component displays an input or general label. */ export declare const Label: React.SFC & { inner: { readonly Styledlabel: any; }; };