/// import { Document } from "@prismicio/types-internal/lib/content"; import type { StaticCustomType } from "@prismicio/types-internal/lib/customtypes"; import type { StaticZone, StaticZoneContent } from "./StaticZone"; interface StaticZoneEditorProps { id: string; readOnly: boolean; staticZone: StaticZone; content: StaticZoneContent; onContentChange: (content: StaticZoneContent) => void; documentId?: string; documentContent: Document; documentCustomType: StaticCustomType; documentLocale: string; } export declare function StaticZoneEditor(props: StaticZoneEditorProps): JSX.Element | null; export {};