import type { ReactNode } from 'react'; import React from 'react'; import type { Props as AccordionItemProps } from '../AccordionItem/AccordionItem'; interface Props extends Omit { /** * Content of Accordion * * @type AccordionItem */ children: ReactNode; /** * Allows only one AccordionItem to be opened when set to true * * @default false */ autoCollapsible?: boolean; } /** @visibleName Accordion */ declare const Accordion: ({ type, autoCollapsible, highlightSelected, hasCloseButton, ...props }: Props) => React.JSX.Element | null; /** @component */ export default Accordion;