/// <reference types="react" />
import { TTabConfig, TTabsProps } from "../../../dataTypes";
export declare const toolbarSample: TTabsProps;
export declare function createProTableTabs({ tabs, activeKey, onTabChange, }: {
    tabs: TTabConfig[];
    activeKey: React.Key;
    onTabChange: (key: React.Key) => void;
}): TTabsProps;
