import { ISplitDbSet } from '../../types/dbset-types'; import { IDbRecord } from '../../types/entity-types'; import { DbSet } from './DbSet'; /** * Data Collection for set of documents with the same type. To be used inside of the DbContext */ export declare class SplitDbSet, TExtraExclusions extends string = never> extends DbSet implements ISplitDbSet { lazy(): this; include(...properties: string[]): this; endTransaction(): Promise; startTransaction(transactionId: string): Promise; }