import { default as React } from 'react'; interface DynamicSectionProps { title?: string; children?: React.ReactNode; collapsible?: boolean; defaultExpanded?: boolean; } declare const DynamicSectionHOC: (props: DynamicSectionProps) => import("react/jsx-runtime").JSX.Element; export { DynamicSectionHOC }; export default DynamicSectionHOC;