///
import { type SlicePrimaryContent } from "@prismicio/types-internal/lib/content";
import type { SlicePrimaryWidget } from "@prismicio/types-internal/lib/customtypes";
type SlicePrimaryZoneContent = Readonly>;
interface SlicePrimaryZoneEditorProps {
id: string;
readOnly: boolean;
slicePrimaryZone: Readonly>;
content: SlicePrimaryZoneContent;
onContentChange: (content: SlicePrimaryZoneContent) => void;
}
export declare function SlicePrimaryZoneEditor(props: SlicePrimaryZoneEditorProps): JSX.Element;
export {};