/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { EditorToolsSettings } from '../config/toolsSettings';
import { EditorDialogProps } from './EditorDialogProps';
export interface InsertImageDialogProps extends EditorDialogProps {
    /**
     * The `ImageSettings` object.
     */
    settings: EditorToolsSettings.ImageSettings;
}
/**
 * @hidden
 */
declare const InsertImageDialog: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    view: ObjectConstructor;
    settings: ObjectConstructor;
    dir: StringConstructor;
}>, {}, {
    srcValue: any;
    altValue: any;
    titleValue: any;
    widthValue: any;
    heightValue: any;
}, {}, {
    handleSrcInput(e: any): void;
    handleAltInput(e: any): void;
    handleTitleInput(e: any): void;
    handleWidthInput(e: any): void;
    handleHeightInput(e: any): void;
    onClose(): void;
    onInsert(): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    close: any;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    view: ObjectConstructor;
    settings: ObjectConstructor;
    dir: StringConstructor;
}>> & Readonly<{
    onClose?: (...args: any[] | unknown[]) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { InsertImageDialog };
