/** * 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; //# sourceMappingURL=document-bulk-delete-response.d.ts.map