import type { DefineComponent } from 'vue' export type TabItem = { id: string; name?: string; [key: string]: any; } interface Props { /** 标签 */ tabs: TabItem[]; /** 是否启用搜索按钮 */ showSearch?: boolean; /** 输入框提示词 */ placeholder?: string; /** 列表项按压事件 */ onActiveTabPress?: (newIndex: number) => void; /** 搜索事件 */ onSearch?: () => void; } declare const _default: DefineComponent export default _default