import { Cre8Element } from '../cre8-element'; /** * The component is a vertically stacked list of headers that reveal or hide sections of related content on a page. * The header title gives the user a high level overview of the content allowing the user to decide * which sections to expand for the information. * * Accordion contains Accordion Items as children. This component is the wrapper for grouping related accordion items. * * Users can select different border types: default (no border), rectangle, rounded bottom, and rounded. * */ export declare class Cre8Accordion extends Cre8Element { static styles: import("lit").CSSResult[]; /** * borderType * @prop {'rectangle' | 'rounded-bottom' | 'rounded' | 'none'} * * Controls the border and border-radius of the parent container of the slotted accordions. * */ borderType?: 'rectangle' | 'rounded-bottom' | 'rounded' | 'none'; /** * * When it is true, the inner dividers are displayed; * if it is false, the inner dividers are not displayed * @prop {boolean} hasDivider * */ hasDivider?: boolean; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-accordion': Cre8Accordion; } } export default Cre8Accordion; //# sourceMappingURL=accordion.d.ts.map