import { default as React } from 'react'; import { Theme } from '@principal-ade/industry-theme'; import { PanelDefinitionWithContent } from './ConfigurablePanelLayout'; import { TabsConfig } from './PanelConfigurator'; export interface TabGroupProps { /** Panel IDs to display as tabs */ panelIds: string[]; /** All available panels with content */ panels: PanelDefinitionWithContent[]; /** Tab configuration */ config?: TabsConfig; /** Optional class name */ className?: string; /** Theme object for customizing colors */ theme: Theme; } /** * TabGroup - Renders multiple panels in a tabbed interface */ export declare const TabGroup: React.FC; //# sourceMappingURL=TabGroup.d.ts.map