import { default as React, ReactNode } from 'react'; export type PanelContentProps = { /** * className for the element. */ className?: string; /** * The content of the Panel. */ children: ReactNode; /** * The selector for the aria title of the
*/ 'aria-labelledby'?: string; /** * Whether the panel is coming from the side */ DO_NOT_USE_isSidePanel?: boolean; }; export type SidePanelContentProps = Omit; export declare function PanelContent({ children, className, DO_NOT_USE_isSidePanel, 'aria-labelledby': ariaLabelledby, ...rest }: PanelContentProps): React.JSX.Element; export declare function SidePanelContent(props: SidePanelContentProps): React.JSX.Element; //# sourceMappingURL=PanelContent.d.ts.map