import type { HTMLAttributes } from "react"; import type { SMSRenderProps } from "./SMS"; import { type VariableViewMode } from "../../store"; export interface SMSEditorProps extends SMSRenderProps, Omit, "content"> { readOnly?: boolean; variableViewMode?: VariableViewMode; } export declare const SMSEditor: ({ content, extensions, editable, autofocus, onUpdate, className, readOnly, variableViewMode, }: SMSEditorProps) => import("react/jsx-runtime").JSX.Element;