import { ReactNode } from 'react'; export interface PLHelpSectionProps { onCloseClick?: VoidFunction; children?: ReactNode; title?: string; footer?: ReactNode; } declare const PLHelpSection: ({ onCloseClick, children, title, footer }: PLHelpSectionProps) => import("react").JSX.Element; export default PLHelpSection;