import type { ExtractPublicPropTypes } from 'vue';
import { type ThemeComponent } from '../../composables/useTheme';
declare const labelProps: {
    label: StringConstructor;
    disabled: BooleanConstructor;
    required: BooleanConstructor;
    block: BooleanConstructor;
    isInsideForm: BooleanConstructor;
    tag: {
        type: StringConstructor;
        default: string;
    };
    tooltip: StringConstructor;
    size: {
        readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
        readonly default: "md";
        readonly validator: (value: string) => boolean;
    };
};
export type LabelProps = ExtractPublicPropTypes<typeof labelProps>;
type InternalClasses = 'wrapper' | 'label';
export interface LabelTheme extends ThemeComponent<LabelProps, InternalClasses> {
}
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
    label: StringConstructor;
    disabled: BooleanConstructor;
    required: BooleanConstructor;
    block: BooleanConstructor;
    isInsideForm: BooleanConstructor;
    tag: {
        type: StringConstructor;
        default: string;
    };
    tooltip: StringConstructor;
    size: {
        readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
        readonly default: "md";
        readonly validator: (value: string) => boolean;
    };
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    label: StringConstructor;
    disabled: BooleanConstructor;
    required: BooleanConstructor;
    block: BooleanConstructor;
    isInsideForm: BooleanConstructor;
    tag: {
        type: StringConstructor;
        default: string;
    };
    tooltip: StringConstructor;
    size: {
        readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
        readonly default: "md";
        readonly validator: (value: string) => boolean;
    };
}>> & Readonly<{}>, {
    disabled: boolean;
    tag: string;
    size: import("../../composables/useCommon").Size;
    block: boolean;
    required: boolean;
    isInsideForm: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
