import { Control, type IControlOptions } from "./Control"; export interface ISecondarySidebarOptions extends IControlOptions { toggler?: string; } export declare class SecondarySidebar extends Control { constructor(element: HTMLElement | string, options: ISecondarySidebarOptions); private bind; static onInitialize(): void; }