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