import type { MSTeamsRenderProps } from "./MSTeams"; import { type VariableViewMode } from "../../store"; export interface MSTeamsEditorProps extends MSTeamsRenderProps { readOnly?: boolean; variableViewMode?: VariableViewMode; } export declare const MSTeamsEditor: ({ content, extensions, editable, autofocus, onUpdate, readOnly, variableViewMode, textMenuConfig, }: MSTeamsEditorProps) => import("react/jsx-runtime").JSX.Element | null;