import type { DocumentMetadata } from './document-metadata.js';
/**
 * Representation of the 'BatchUpdateDocumentSuccess' schema.
 */
export type BatchUpdateDocumentSuccess = {
    /**
     * Unique identifier of the document.
     * Format: "uuid".
     */
    id: string;
    /**
     * Metadata updates for this document.
     */
    metadata: DocumentMetadata[];
} & Record<string, any>;
//# sourceMappingURL=batch-update-document-success.d.ts.map