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