import { EventEmitter, ElementRef, Renderer2, QueryList } from '@angular/core'; import { NglAccordionSection } from './accordion-section'; import * as i0 from "@angular/core"; export declare class NglAccordion { /** * Defines the expanded section(s). */ activeName: string | string[]; activeNameChange: EventEmitter; /** * Whether we allow multiple sections open at a time. */ multiple: boolean; sections: QueryList; constructor(element: ElementRef, renderer: Renderer2); toggle(section: NglAccordionSection): void; isActive(section: NglAccordionSection): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }