export interface CollapsibleOptions { duration?: number; } /** Animates expand/collapse transitions on the host, dispatching `native:expand` and `native:collapse`. */ export declare class CollapsibleController { #private; readonly host: HTMLElement; duration: number; constructor(host: HTMLElement, options?: CollapsibleOptions); get collapsed(): boolean; set collapsed(val: boolean); expand(): void; collapse(): void; toggle(): void; destroy(): void; } //# sourceMappingURL=collapsible-controller.d.ts.map