import Tailwind from '../base/tailwind-base'; /** * @tag plus-accordion-group * @summary A container for grouping accordion items together. * * @slot default - Accordion items to be grouped * * @csspart container - The container element * * @example * ```html * * *
First Item
*
Content
*
* *
Second Item
*
Content
*
*
* ``` */ export default class PlusAccordionGroup extends Tailwind { accordions: Array; /** * Whether multiple accordions can be expanded at the same time * @type {boolean} * @default false * @attr multi */ multi: boolean; /** * The visual style of the accordion group * @type {'bordered' | 'divided' | 'separated'} * @default 'bordered' * @attr kind */ kind: 'bordered' | 'divided' | 'separated'; /** * The size of the accordions in the group * @type {'sm' | 'md' | 'lg'} * @default 'md' * @attr size */ size: 'sm' | 'md' | 'lg'; private toggleListener; static styles: import("lit").CSSResult[]; private handleSlotChange; disconnectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } export { PlusAccordionGroup }; //# sourceMappingURL=accordion-group.d.ts.map