/// /** * @prop {string} [title] - The title of the accordion */ export interface AccordionProperties { /** * Title of the accordion */ title?: string; description?: string; index?: number | boolean | undefined; children: React.ReactNode; open?: boolean; onOpen?: (open: boolean | number) => void; disabled?: boolean; bubbles?: { content: React.ReactNode; onClick?: () => void; }[]; className?: string; }