export class AssetDescription {
    /**
     *
     * @param {string} path
     * @param {string} type
     * @constructor
     */
    constructor(path: string, type: string);
    /**
     * @type {string}
     */
    path: string;
    /**
     * @type {string}
     */
    type: string;
    /**
     *
     * @param {AssetDescription} other
     * @returns {boolean}
     */
    equals(other: AssetDescription): boolean;
    /**
     *
     * @returns {number}
     */
    hash(): number;
    toString(): string;
    /**
     * @readonly
     * @type {boolean}
     */
    readonly isAssetDescription: boolean;
}
//# sourceMappingURL=AssetDescription.d.ts.map