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