import { HeadingSize } from '../../tokens/heading-sizes/HeadingSizes'; import { HTMLAttributes, ReactNode } from 'react'; export interface AccordionItem { children: ReactNode; title: string; } export interface AccordionProps extends HTMLAttributes { /** If provided, sets the corresponding section as expanded */ feDefaultExpanded?: number; /** Menu items */ feItems: AccordionItem[]; /** If true, multiple items can be shown at a time */ feMultiple?: boolean; /** If provided, encloses the titles in selected heading element */ feTitlesAs?: Exclude; } /** * The `` component consists of multiple ``, working together * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6256cb1b44eba592d319d92e) for design principles. */ declare const Accordion: import("react").ForwardRefExoticComponent>; export default Accordion;