import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare const _default: __VLS_WithTemplateSlots, { for: undefined; hasError: boolean; isRequired: boolean; showOptional: boolean; legend: boolean; isDisabled: boolean; isSrOnly: boolean; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { for: undefined; hasError: boolean; isRequired: boolean; showOptional: boolean; legend: boolean; isDisabled: boolean; isSrOnly: boolean; }>>> & Readonly<{}>, { legend: boolean; for: string; hasError: boolean; isRequired: boolean; showOptional: boolean; isSrOnly: boolean; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; export declare 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; } export { }