export declare abstract class CfgMtrlSource { abstract isSame(other: CfgMtrlSource): boolean; } export declare class CfgMtrlSourceUrl extends CfgMtrlSource { private _url; private _urlIsFromProperty; constructor(_url: string, _urlIsFromProperty: string); get url(): string; get urlIsFromProperty(): string; isSame(other: CfgMtrlSource): boolean; } export declare class CfgMtrlSourceBuffer extends CfgMtrlSource { private _fileName; private _buffer; constructor(_fileName: string, _buffer: ArrayBuffer); get fileName(): string; get buffer(): ArrayBuffer; isSame(other: CfgMtrlSource): boolean; } //# sourceMappingURL=CfgMtrlSource.d.ts.map