export interface LabelProps { /** * The `id` of the input element that this label is associated with. */ for?: string; /** * Indicates whether the label should be styled as an error. */ hasError?: boolean; /** * Indicates whether the input element that this label is associated with is required. */ isRequired?: boolean; /** * Indicates whether the label should show that the input is optional. */ showOptional?: boolean; /** * Indicates whether the wrapper element to be rendered should be a label or a legend. */ legend?: boolean; /** * Indicates whether the label is disabled. */ disabled?: boolean; /** * Indicates whether the label should be visually hidden (screen reader only). */ isSrOnly?: boolean; } declare var __VLS_8: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_8) => any; }; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { legend: boolean; hasError: boolean; for: string; isRequired: boolean; showOptional: boolean; isSrOnly: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };