/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module ui/form */ import type { IUIInput, IViewBased } from "../../../../../types/index"; import { UIInput } from "../input/input"; export declare class UIFileInput extends UIInput { private button; state: UIInput['state'] & { onlyImages: boolean; tooltip?: string; }; /** @override */ className(): string; protected createContainer(options: Partial): HTMLElement; protected createNativeInput(options: Partial): IUIInput['nativeInput']; constructor(jodit: IViewBased, options: Partial); }