type __VLS_Props = { /** * 标签类型: * 1. nav - 每一项等分排列, 类似于移动端底部的标签栏 * 2. bar - 选项卡 * 3. card - 卡片 */ type?: 'nav' | 'bar' | 'card'; justifyContent?: string; gap?: number; }; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { change: (...args: any[]) => void; "update:modelValue": (value: string | number | undefined) => void; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onChange?: ((...args: any[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined; }>, { type: "nav" | "bar" | "card"; gap: number; justifyContent: string; }, {}, {}, {}, 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; }; };