/**
 * Label
 */
export interface ILabelProps {
    className?: string;
    description?: string;
    isDisabled?: boolean;
    isRequired?: boolean;
    text?: string;
}
