import React from "react"; export interface TabItemProps extends Omit, "onClick"> { id: string; label: string; icon?: React.ReactNode; badge?: string | number; disabled?: boolean; active?: boolean; onClick?: (event: React.MouseEvent) => void; /** * ID of the tab panel this tab controls */ "aria-controls"?: string; /** * Index of the tab for keyboard navigation */ index?: number; /** * Total number of tabs for keyboard navigation */ totalTabs?: number; /** * Callback for keyboard navigation */ onKeyDown?: (event: React.KeyboardEvent) => void; } declare const TabItemComponent: React.FC; export declare const TabItem: React.FC; export default TabItemComponent; //# sourceMappingURL=TabItem.d.ts.map