import { TextureConfig } from "cambrian-base"; import { DataItem } from "./DataItem"; import { ProductItem } from "./ProductItem"; import { ProductBrand } from "./ProductBrand"; export declare class ProductTexture extends DataItem { private _parent; constructor(_parent: ProductItem); albedoPath?: string; normalsPath?: string; roughnessPath?: string; bumpMapPath?: string; specularPath?: string; get brand(): ProductBrand; get parent(): DataItem | undefined; protected get getChildren(): DataItem[]; load(json: TextureConfig): void; get json(): TextureConfig; }