import { PropsWithChildren } from 'react'; /** @public */ export type EntityTabsPanelClassKey = 'root' | 'stretch' | 'noPadding'; type EntityTabsPanelProps = PropsWithChildren<{ stretch?: boolean; noPadding?: boolean; className?: string; }>; export declare function EntityTabsPanel(props: EntityTabsPanelProps): import("react/jsx-runtime").JSX.Element; export {};