/// import type { Document } from "@prismicio/types-internal/lib/content"; import type { StaticCustomType } from "@prismicio/types-internal/lib/customtypes"; import { type EditorConfig } from "./EditorConfig"; interface Props { config: EditorConfig; readOnly?: boolean; customType: StaticCustomType; sectionName: string; documentId?: string; content: Document; locale: string; onContentChange: (content: Document) => void; } export declare function DocumentEditor(props: Props): JSX.Element | null; export {};