UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

12 lines (11 loc) 362 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AccordionProps } from './Accordion'; export type AccordionContextValue = { headingLevel: AccordionProps['headingLevel']; sectionAs?: AccordionProps['sectionAs']; }; declare const AccordionContext: import("react").Context<AccordionContextValue>; export default AccordionContext;