declare interface IKirejiAppSidebar extends IMix, IWebView { // Subparts. readonly open: IKirejiAppSidebarOpen readonly outlinerDomains: IOutliner readonly outlinerTypes: IOutliner readonly width: IKirejiAppSidebarWidth // Components. readonly "header.html": string readonly "view.html": string /** The outliner currently assigned to the sidebar (resolves to a view even when the sidebar is hidden). */ readonly "view": IOutliner /** Opens any closed parent folders of and scrolls (if necessary) to the element corresponding to the currently active tab. Does nothing if the sidebar is closed or there are no tabs open. @remarks Client-only */ readonly frameActiveTab(): void // Properties. readonly element: HTMLElement } declare type IKirejiAppSidebarPart = IPart> declare const KirejiSidebar: IKirejiAppSidebar type KirejiSidebar = T declare const SUBJECT: IPartAny