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