import { ITheme } from '../../Styling';
export interface ILabelClassNames {
    root: string;
}
export declare const getLabelClassNames: (theme: ITheme, className: string | undefined, disabled: boolean, required: boolean) => ILabelClassNames;
