/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import type { TextEditorRequest } from "../../../ui-core/controllers/overlay-controller.js"; export interface TextEditorModalProps { readonly services: AppServices; readonly theme: Theme; readonly request: TextEditorRequest; readonly width: number; readonly height: number; } export declare function TextEditorModal(props: TextEditorModalProps): ReactNode;