import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface AccordionGroupProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** * If true, only one accordion can be expanded at a time. * @default false */ exclusive?: boolean; /** * The size of accordion group, which will be passed to each Accordion in the group. * @default 'main' */ size?: 'main' | 'sub'; } declare const AccordionGroup: import("react").ForwardRefExoticComponent>; export default AccordionGroup;