import { TabPaneProps, TabsProps } from 'antd/lib/tabs';
import { FC, PropsWithChildren } from 'react';
import './index.css';
export declare type ATabsProps = Pick<TabsProps, 'className' | 'activeKey' | 'centered' | 'type' | 'onChange' | 'onEdit' | 'onTabClick' | 'animated' | 'moreIcon' | 'renderTabBar' | 'items'>;
export declare const ATabs: FC<PropsWithChildren<ATabsProps>>;
export declare type ATabPaneProps = Pick<TabPaneProps, 'className' | 'tab' | 'tabKey'>;
export declare const ATabPane: FC<PropsWithChildren<ATabPaneProps>>;
