export interface TabPanelProps { children?: React.ReactNode; id: string; tabId: string; style: React.CSSProperties; } export default function TabPanel({ children, id, tabId, style }: TabPanelProps): import("react").JSX.Element; //# sourceMappingURL=TabPanel.d.ts.map