/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type AccordionProps = { /** * The hierarchical level of this Accordion’s Section Headings within the document. * There is no default value; determine the correct level for each instance. */ headingLevel: 2 | 3 | 4; /** The HTML element to use for each Accordion Section. */ sectionAs?: 'div' | 'section'; } & PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-accordion--docs Accordion docs at Amsterdam Design System} */ export declare const Accordion: import("react").ForwardRefExoticComponent<{ /** * The hierarchical level of this Accordion’s Section Headings within the document. * There is no default value; determine the correct level for each instance. */ headingLevel: 2 | 3 | 4; /** The HTML element to use for each Accordion Section. */ sectionAs?: "div" | "section"; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Section: import("react").ForwardRefExoticComponent<{ defaultExpanded?: boolean; expanded?: boolean; label: string; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };