/** * @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.js'; import { EditorDialogProps } from './EditorDialogProps.js'; import * as React from 'react'; /** * @hidden */ export interface ViewHtmlDialogProps extends EditorDialogProps { /** * The `ViewHtmlSettings` object. */ settings: EditorToolsSettings.ViewHtmlSettings; } /** * @hidden */ export declare class ViewHtmlDialog extends React.Component { private htmlArea; /** * @hidden */ render(): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | React.JSX.Element | null | undefined; private textAreaRef; private onUpdate; private onClose; }