import { default as React, ReactNode } from 'react'; export type LabelProps = { /** * className for the element */ className?: string; /** * Whether the label fit the content or the parent. * @default content */ fit?: 'parent' | 'content'; /** * The content to display in the tooltip near the label */ infoTipContent?: ReactNode; /** * Content to render as additionnal information * on the right side of the label */ hint?: ReactNode; /** * ID associated with the label */ htmlFor?: string; /** * The element's unique identifier */ id?: string; /** * The text to display as the label */ label: string; /** * Whether the label should be visually hidden * @default false */ visuallyHideLabel?: boolean; }; export declare const Label: ({ className, fit, id, hint, htmlFor, infoTipContent, label, visuallyHideLabel, ...rest }: LabelProps) => React.JSX.Element; //# sourceMappingURL=Label.d.ts.map