import React, { FC } from 'react'; interface AccordionSectionProps { /** Contents of the section to be rendered. */ children: React.ReactNode; /** The unique id of the section. */ id: string; /** The title to render for the accordion section. */ title: string; /** Controls whether the section is expanded or not. */ isOpen?: boolean; /** Called when the section is opened/closed. */ onSectionToggled?: (isOpen: boolean) => void; } export declare const AccordionSection: FC; export {};