import * as React from "react"; import { IconProps } from "../IconBase"; import { ViewProps } from "../View"; export interface LabelProps extends ViewProps { htmlFor?: string; statusText?: string; statusColor?: string; statusIcon?: React.ComponentType; spinnerIcon?: boolean; color?: string; labelSuffix?: React.ReactNode; } declare class Label extends React.PureComponent { static displayName: string; render(): JSX.Element; } export default Label;