type LabelWidth = '120 px' | '200 px' | 'Dynamic';
type Layout = '1 line' | '1 line & Right' | '2 lines';
type Status = 'Error' | 'Normal';
type Theme = 'Dark' | 'Light';
type Type = 'Label & checkbox' | 'Label & Input' | 'Label & Radio' | 'Label & Selector' | 'Label & Switch' | 'Label & Textarea';
declare function __VLS_template(): {
    label?(_: {}): any;
    default?(_: {}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
    label?: string;
    required?: boolean;
    error?: string;
    hint?: string;
    labelWidth?: LabelWidth;
    layout?: Layout;
    status?: Status;
    theme?: Theme;
    type?: Type;
}>, {
    label: string;
    required: boolean;
    hint: string;
    labelWidth: string;
    layout: string;
    status: string;
    theme: string;
    type: string;
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
    label?: string;
    required?: boolean;
    error?: string;
    hint?: string;
    labelWidth?: LabelWidth;
    layout?: Layout;
    status?: Status;
    theme?: Theme;
    type?: Type;
}>, {
    label: string;
    required: boolean;
    hint: string;
    labelWidth: string;
    layout: string;
    status: string;
    theme: string;
    type: string;
}>>> & Readonly<{}>, {
    type: Type;
    label: string;
    status: Status;
    theme: Theme;
    required: boolean;
    layout: Layout;
    hint: string;
    labelWidth: LabelWidth;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithDefaults<P, D> = {
    [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
        default: D[K];
    }> : P[K];
};
type __VLS_Prettify<T> = {
    [K in keyof T]: T[K];
} & {};
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
