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