import React from "react"; import "./tab.less"; import type { CallbacksValue, EventsValue, RemoteValue, Action } from "@feige0629/react-store"; type TabProps = { /** * 选中tab id */ activeKey?: string; /** * 列表 */ tabItems: Record[]; /** * 子组件 */ children: (item: CallbacksValue & EventsValue & RemoteValue & Action) => React.ReactNode; /** * 拖拽回调 */ onDragChange?: (data: Record[]) => void; /** * 切换选项卡 */ onActiveChange?: (activeKey: string) => void; }; export declare const Tab: React.FC; export {};