/**
 * Response after deleting documents in bulk.
 */
export type DocumentBulkDeleteResponse = {
    /**
     * List of successfully deleted document IDs
     */
    deleted: string[];
    /**
     * List of document IDs that were not found
     */
    notFound: string[];
} & Record<string, any>;
//# sourceMappingURL=document-bulk-delete-response.d.ts.map