/*! * 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 { IViewBased, ModType } from "jodit/esm/types/index"; import { UIGroup } from "jodit/esm/core/ui/index"; import type { IFileBrowserStatePro } from "../../interface"; export declare class UIBrowserSettings extends UIGroup { readonly state: IFileBrowserStatePro; /** @override */ className(): string; /** @override */ protected render(): string; /** @override */ protected appendChildToContainer(childContainer: HTMLElement): void; afterSetMod(name: string, value: ModType): void; constructor(jodit: IViewBased, state: IFileBrowserStatePro); protected onChangeView(): void; /** * Generate options list */ private generateSettings; }