///
import { type NestableContent } from "@prismicio/types-internal/lib/content";
import type { NestableWidget } from "@prismicio/types-internal/lib/customtypes";
type NonRepeatableZoneContent = Readonly>;
interface NonRepeatableZoneEditorProps {
id: string;
readOnly: boolean;
nonRepeatableZone: Readonly>;
content: NonRepeatableZoneContent;
onContentChange: (content: NonRepeatableZoneContent) => void;
}
export declare function NonRepeatableZoneEditor(props: NonRepeatableZoneEditorProps): JSX.Element;
export {};