import { Base, IEnumerable$1, Type } from "igniteui-react-core";
import { IPackage } from "./IPackage";
import { IPackagePart } from "./IPackagePart";
import { Uri } from "igniteui-react-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<IPackagePart>;
    getRelationship(a: string): IPackageRelationship;
    getRelationships(): IEnumerable$1<IPackageRelationship>;
    partExists(a: Uri): boolean;
}
