import React, { FC } from 'react'; interface ExpandableSectionProps { children?: React.ReactNode; className?: string; onToggle?: (open: boolean) => void; open?: boolean; title: React.ReactNode; } declare const ExpandableSection: FC; export default ExpandableSection;