import { default as React, ReactNode } from 'react'; export type PanelBodyProps = { /** * The content to display in the PanelBody. */ children: ReactNode; /** * className for the element */ className?: string; }; export declare function PanelBody({ children, className }: PanelBodyProps): React.JSX.Element; //# sourceMappingURL=PanelBody.d.ts.map