/// import type { UIDContent } from "@prismicio/types-internal/lib/content"; import type { UID as UIDType } from "@prismicio/types-internal/lib/customtypes"; interface UIDFieldProps { id: string; content?: UIDContent; field: UIDType; onContentChange: (content?: UIDContent) => void; readOnly?: boolean; } export declare function UIDField(props: UIDFieldProps): JSX.Element; export {};