import React from 'react'; export interface TabsProps { tabs: { label: string; id: string; }[]; activeTabId?: string; onClick?: (tabId: string) => void; } declare const Tabs: ({ tabs, activeTabId, onClick }: TabsProps) => React.JSX.Element; export default Tabs;