import { TIcon } from '../../types/icons.types'; export declare const BASE_LABEL_TOOLTIP_WIDTH = 180; export interface IUseInputLabelProps { required?: boolean; label?: string; /** * Icon shown before the label text. Accepts a class string (legacy * `vc-icon-*`) or a Vue component (e.g. a Lucide icon from * `@lucide/vue`). */ icon?: TIcon; infoText?: string; infoTooltipWidth?: string | number; } export declare const labelTooltipInfoWidth: (width?: string | number) => string;