import { TooltipPosition } from '../../../../../../../../../src/components'; import { IconNamesType } from '../../../../../../../../../src/utils'; export type LabelIconProps = { iconType: IconNamesType; iconAriaLabel: string; iconTooltipPosition: TooltipPosition; iconTooltipText: string; }; export type LabelProps = { htmlFor: string; text?: string; className?: string; children?: React.ReactNode; icon?: LabelIconProps; generateTooltip?: boolean; }; export type ExternalLabelProps = Omit; export declare const Label: ({ text: label, htmlFor: id, className, children, icon, generateTooltip, }: LabelProps) => import("react/jsx-runtime").JSX.Element;