import React from 'react'; export declare type PanelProps = { title?: string; className?: string; children?: string | React.ReactNode; onClose?: () => void; }; declare const Panel: { (props: PanelProps): JSX.Element; displayName: string; }; export default Panel;