import type { TabsProps } from 'antd';
import React from 'react';
import type { ProCardTabPaneProps, ProCardTabsProps } from '../../typing';
export declare function useLegacyItems(items?: TabsProps['items'], children?: React.ReactNode, tabs?: ProCardTabsProps): {
    children: import("react/jsx-runtime").JSX.Element;
    key: string;
    label: React.ReactNode;
    disabled?: boolean;
    className?: string;
    style?: React.CSSProperties;
    id?: string;
    prefixCls?: string;
    animated?: boolean;
    destroyInactiveTabPane?: boolean;
    forceRender?: boolean;
    closable?: boolean;
    closeIcon?: React.ReactNode;
    icon?: React.ReactNode;
    tabKey?: string;
    active?: boolean;
}[];
/**
 * @deprecated ProComponets 3.0
 */
declare const TabPane: React.FC<ProCardTabPaneProps>;
export default TabPane;
