import { ReactNode } from 'react'; interface PanelSectionProps { title: ReactNode; description?: ReactNode; children?: ReactNode; } export declare function PanelSection(props: PanelSectionProps): ReactNode; export {};