/// import { Document, type TextContent } from "@prismicio/types-internal/lib/content"; import type { StaticCustomType, Text } from "@prismicio/types-internal/lib/customtypes"; import { type MetadataType } from "../core/service"; interface MetadataTextFieldProps { content: TextContent | undefined; documentId?: string; documentContent: Document; documentCustomType: StaticCustomType; documentLocale: string; field: Text; id: string; metadataFieldType: MetadataType; onContentChange: (content: TextContent | undefined) => void; readOnly: boolean; } export declare function MetadataTextField(props: MetadataTextFieldProps): JSX.Element; export {};