import { type DataTestId, type StylingProps, type WithChildren, type AriaLabelingProps, type DOMProps } from '@dynatrace/strato-components/core'; export interface TabPanelProps extends WithChildren, DOMProps, AriaLabelingProps, StylingProps, DataTestId { /** * Whether the tab panel is disabled. * If true, its content is not rendered. */ disabled: boolean; /** The overflow behavior of the tab panel. */ panelOverflow: 'hidden' | 'scroll-y'; } /** * TabPanel component, used to display the content of a tab. */ export declare const TabPanel: { (props: TabPanelProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };