import './status-bar.less'; import type { IJodit, IStatusBar, IDictionary, ModType } from 'jodit/types'; import { ViewComponent } from 'jodit/core/component'; import { Elms, Mods } from 'jodit/core/traits'; export interface StatusBar extends Mods, Elms { } export declare class StatusBar extends ViewComponent implements IStatusBar { readonly target: HTMLElement; className(): string; container: HTMLDivElement; hide(): void; show(): void; get isShown(): boolean; readonly mods: IDictionary; getHeight(): number; private findEmpty; append(child: HTMLElement, inTheRight?: boolean): void; constructor(jodit: IJodit, target: HTMLElement); destruct(): void; }