import { ILazyLoaderWithInclude } from "./ILazyLoaderWithInclude"; import { IDocumentSessionImpl } from "../IDocumentSession"; import { ObjectTypeDescriptor, EntitiesCollectionObject } from "../../../Types"; import { Lazy } from "../../Lazy"; export declare class LazyMultiLoaderWithInclude implements ILazyLoaderWithInclude { private readonly _session; private readonly _includes; constructor(session: IDocumentSessionImpl); include(path: string): ILazyLoaderWithInclude; load(ids: string[]): Lazy>; load(ids: string[], clazz: ObjectTypeDescriptor): Lazy>; load(id: string): Lazy; load(id: string, clazz?: ObjectTypeDescriptor): Lazy; }