/// export interface IExpandableSectionProps { defaultOpen?: boolean; children: React.ReactNode; title: string; titleClassName?: string; subtitle?: string; subtitleClassName?: string; className?: string; onClickHandler?: () => void; icon?: any; clickHandlerTimeout?: number; actionOnClick?: () => void; grid?: boolean; }