/// import { SlicesContent } from "@prismicio/types-internal/lib/content"; import type { StaticSlices } from "@prismicio/types-internal/lib/customtypes"; interface SliceZoneEditorProps { id: string; readOnly: boolean; sliceZone: StaticSlices; content: SlicesContent | undefined; onContentChange: (content: SlicesContent) => void; } export declare function SliceZoneEditor(props: SliceZoneEditorProps): JSX.Element; export {};