import * as react_jsx_runtime from 'react/jsx-runtime';
import { LabelHTMLAttributes } from 'react';

type LabelType = 'labelSmall' | 'labelMedium' | 'labelBig';
type LabelProps = {
    /** The text for the label */
    name?: string;
    /** The styling for the label */
    labelType?: LabelType;
} & LabelHTMLAttributes<HTMLLabelElement>;
/**
 * A Label component
 */
declare const Label: ({ children, name, labelType, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;

export { Label, type LabelProps, type LabelType };
