declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        prepend?(_: {}): any;
        prefix?(_: {}): any;
        default?(_: {}): any;
        suffix?(_: {}): any;
        append?(_: {}): any;
    };
    refs: {};
    rootEl: HTMLLabelElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    size: {
        type: import('vue').PropType<import('../..').SizeT>;
    };
    round: {
        type: import('vue').PropType<import('../..').RoundT>;
    };
    color: {
        type: import('vue').PropType<import('../..').Color2T>;
        default: string;
    };
    variant: {
        type: import('vue').PropType<import('../..').VariantT>;
        default: string;
    };
    focused: {
        type: BooleanConstructor;
    };
    disabled: {
        type: BooleanConstructor;
    };
    readonly: {
        type: BooleanConstructor;
    };
    for: {
        type: StringConstructor;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    size: {
        type: import('vue').PropType<import('../..').SizeT>;
    };
    round: {
        type: import('vue').PropType<import('../..').RoundT>;
    };
    color: {
        type: import('vue').PropType<import('../..').Color2T>;
        default: string;
    };
    variant: {
        type: import('vue').PropType<import('../..').VariantT>;
        default: string;
    };
    focused: {
        type: BooleanConstructor;
    };
    disabled: {
        type: BooleanConstructor;
    };
    readonly: {
        type: BooleanConstructor;
    };
    for: {
        type: StringConstructor;
    };
}>> & Readonly<{}>, {
    color: "normal" | "primary" | "success" | "warning" | "danger";
    disabled: boolean;
    variant: "solid" | "outline" | "text";
    readonly: boolean;
    focused: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLabelElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
