import React from "react";
interface TabItem {
    [key: string]: any;
    title?: string;
    key?: string;
}
interface AppTabsProps {
    tabPosition?: 'top' | 'right' | 'bottom' | 'left';
    className?: string;
    activeKey?: string;
    onChange?: (activeKey: string) => void;
    defaultActiveKey?: string;
    list?: TabItem[];
    itemFields?: {
        title: string;
        key: string;
    };
}
declare const AppTabs: React.FC<AppTabsProps>;
export default AppTabs;
