import React, { ReactNode } from 'react'; export interface AccordionPanel { id: string; headline: string; content: string; actions?: ReactNode; } export declare const Accordions: ({ initial, panels }: { initial?: string[] | undefined; panels: AccordionPanel[]; }) => React.JSX.Element[];