import { IPackagePart } from "./IPackagePart";
import { IPackageRelationship } from "./IPackageRelationship";
import { Type } from "igniteui-react-core";
/**
 * @hidden
 */
export interface IPackagePartEx extends IPackagePart {
    createExternalRelationship(a: string, b: string, c: string): IPackageRelationship;
}
/**
 * @hidden
 */
export declare let IPackagePartEx_$type: Type;
