import { EventName } from '@lit/react'; import { Tabs, Tab, TabPanel, TabsProps, TabChangeEvent } from '../core/Tabs'; import * as React from 'react'; /** * React-specific props interface for Tabs component * Extends core TabsProps with React-specific additions */ export interface ReactTabsProps extends TabsProps { children?: React.ReactNode; className?: string; id?: string; } /** * React-specific props interface for Tab component */ export interface ReactTabProps { panel: string; disabled?: boolean; children?: React.ReactNode; className?: string; id?: string; } /** * React-specific props interface for TabPanel component */ export interface ReactTabPanelProps { children?: React.ReactNode; className?: string; id?: string; } export declare const ReactTabs: import('@lit/react').ReactWebComponent; }>; export declare const ReactTab: import('@lit/react').ReactWebComponent; export declare const ReactTabPanel: import('@lit/react').ReactWebComponent; export type { TabChangeEvent, TabChangeEventDetail } from '../core/Tabs'; //# sourceMappingURL=ReactTabs.d.ts.map