export declare abstract class CollapsibleElement extends HTMLElement {
    arrowDown: Element;
    arrowUp: Element;
    collapsibleElements: HTMLElement[];
    collapsed: boolean;
    toggle(): void;
    attributeChangedCallback(name: string): void;
    hideAll(): void;
    expandAll(): void;
    abstract get baseClass(): string;
}
