import { default as React } from 'react'; export interface TabsPanelProps { /** The content of the tab panel (any node type) */ children: React.ReactNode; /** String ID used to link the `Tabs.Panel` to a `Tabs.Tab` */ tabId: string; /** Optional value for `data-testid` attribute */ testId?: string; } declare const TabsPanel: ({ children, tabId, testId }: TabsPanelProps) => React.JSX.Element; export default TabsPanel; //# sourceMappingURL=TabsPanel.d.ts.map