/// import type { EmbedContent } from "@prismicio/types-internal/lib/content"; import type { Embed as EmbedT } from "@prismicio/types-internal/lib/customtypes"; interface Props { id: string; readOnly: boolean; field: EmbedT; content?: EmbedContent; onContentChange: (content?: EmbedContent) => void; } export declare function EmbedField(props: Props): JSX.Element; export {};