import { type ReactNode } from 'react'; import type { MouseEvent } from 'react'; interface Props { prefixCls: string; tabs: { title?: ReactNode; key: string; }[]; activeKey?: string; onTabClick: (key: string, index: number, e: MouseEvent) => void; } export default function TabBar(props: Props): JSX.Element; export {};