import * as React from 'react'; export type TabHeaderProps = { title: string; id: string; href?: string; onClick: () => void; onKeyDown: (event: React.KeyboardEvent) => void | undefined; isActive: boolean; count?: number; children?: React.ReactNode; }; declare const TabHeader: React.FC; export default TabHeader;