import { Base, IEnumerable$1, Type } from "igniteui-webcomponents-core"; import { IPackage } from "./IPackage"; import { IPackagePart } from "./IPackagePart"; import { Uri } from "igniteui-webcomponents-core"; import { IPackageRelationship } from "./IPackageRelationship"; import { RelationshipTargetMode } from "./RelationshipTargetMode"; /** * @hidden */ export declare class CachedLoadPackage extends Base implements IPackage { static $t: Type; readonly _a: IPackage; private _c; constructor(a: IPackage, b: boolean); createPart(a: Uri, b: string): IPackagePart; createRelationship(a: Uri, b: RelationshipTargetMode, c: string, d: string): IPackageRelationship; dispose(): void; getPart(a: Uri): IPackagePart; _b(a: IPackagePart): IPackagePart; private _getParts; getParts(): IEnumerable$1; getRelationship(a: string): IPackageRelationship; getRelationships(): IEnumerable$1; partExists(a: Uri): boolean; }