import { ILazyLoaderWithInclude } from "./ILazyLoaderWithInclude.js"; import { IDocumentSessionImpl } from "../IDocumentSession.js"; import { ObjectTypeDescriptor, EntitiesCollectionObject } from "../../../Types/index.js"; import { Lazy } from "../../Lazy.js"; export declare class LazyMultiLoaderWithInclude implements ILazyLoaderWithInclude { private readonly _session; private readonly _includes; constructor(session: IDocumentSessionImpl); /** * Includes the specified path. */ include(path: string): ILazyLoaderWithInclude; load(ids: string[]): Lazy>; load(ids: string[], clazz: ObjectTypeDescriptor): Lazy>; load(id: string): Lazy; load(id: string, clazz?: ObjectTypeDescriptor): Lazy; } //# sourceMappingURL=LazyMultiLoaderWithInclude.d.ts.map