import { LabelName } from '../MeTabItem/types'; import { USEInitSlots } from './types'; import { Ref, ComputedRef } from 'vue'; /** * 初始化 slot */ export declare const useInitSlots: ({ emit, currentValue }: USEInitSlots.Option) => { tabsDom: Ref; tabList: Ref<{ label: string; name: string | number; }[], LabelName[] | { label: string; name: string | number; }[]>; transX: Ref; duration: Ref; curIndex: ComputedRef; onClick: ({ name }: LabelName) => void; };