/**
 * Representation of the 'DocumentMetadata' schema.
 */
export type DocumentMetadata = {
    /**
     * Metadata key name.
     * @example "contentObjectId"
     */
    key: string;
    /**
     * An array of string values associated with the metadata key. If the key already exists, its values will be overwritten. Setting the value to null will delete the metadata key-value pair.
     */
    value: string[] | null;
    /**
     * Match mode for the metadata key (ANY or ALL).
     * @example "ANY"
     */
    matchMode?: 'ANY' | 'ALL' | any;
} & Record<string, any>;
//# sourceMappingURL=document-metadata.d.ts.map