/*!
 * Jodit Editor PRO (https://xdsoft.net/jodit/)
 * See LICENSE.md in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
 */
import type { IUIElement, IViewBased } from "jodit/esm/types/index";
import { UIGroup } from "jodit/esm/core/ui/group/group";
import type { IFileBrowserStatePro } from "../../interface";
import { UIResize } from "../../../../traits/resize/resize";
export declare class UISidebar extends UIGroup implements UIResize {
    readonly state: IFileBrowserStatePro;
    /** @override */
    className(): string;
    /** @override */
    protected render(): string;
    /** @override */
    protected appendChildToContainer(childContainer: HTMLElement): void;
    /**
     * Add handle resizer
     */
    addResize(): void;
    constructor(jodit: IViewBased, elements: Array<IUIElement | void | null | false>, state: IFileBrowserStatePro);
    private onChangeFavorites;
    protected onClickHideButton(): false;
    protected onClickFavorites(): false;
}
