import { default as React, MouseEventHandler, ReactNode } from 'react'; export type PanelNavigationProps = { /** * The left content of the PanelNavigation. */ children: (titleId: string) => ReactNode; /** * Handler that is called when the Panel is closed. If not provided, the close button will not be displayed. */ onClose?: MouseEventHandler; }; export declare function PanelNavigation({ children, onClose }: PanelNavigationProps): React.JSX.Element; //# sourceMappingURL=PanelNavigation.d.ts.map