import React, { FC } from 'react';
import { LabelVariant } from './types';
declare type Props = {
    children: React.ReactNode;
    hasError?: boolean;
    disabled?: boolean;
    showAsterisk?: boolean;
    htmlFor?: string;
    variant?: LabelVariant;
};
export declare const Label: FC<Props>;
export default Label;
