import React from 'react'; import { Tab } from '@alifd/next'; export interface TabContainerItemProps extends React.ComponentProps { className?: string; tab: string; key: string; } export declare const TabContainerItem: { (props: TabContainerItemProps): JSX.Element; displayName: string; };