import { ILazySessionOperations } from "./ILazySessionOperations.js"; import { DocumentSession } from "../../DocumentSession.js"; import { ILazyLoaderWithInclude } from "../../Loaders/ILazyLoaderWithInclude.js"; import { ObjectTypeDescriptor, EntitiesCollectionObject } from "../../../../Types/index.js"; import { Lazy } from "../../../Lazy.js"; import { SessionLoadStartingWithOptions } from "../../IDocumentSession.js"; import { ConditionalLoadResult } from "../../ConditionalLoadResult.js"; export declare class LazySessionOperations implements ILazySessionOperations { protected _delegate: DocumentSession; constructor(delegate: DocumentSession); include(path: string): ILazyLoaderWithInclude; load(ids: string[], clazz: ObjectTypeDescriptor): Lazy>; load(id: string, clazz: ObjectTypeDescriptor): Lazy; load(ids: string[]): Lazy>; load(id: string): Lazy; loadStartingWith(idPrefix: string, opts: SessionLoadStartingWithOptions): Lazy>; loadStartingWith(idPrefix: string): Lazy>; conditionalLoad(id: string, changeVector: string, clazz: ObjectTypeDescriptor): Lazy>; } //# sourceMappingURL=LazySessionOperations.d.ts.map