import { SceneConfig } from "cambrian-base"; import { DataItem } from "./DataItem"; import { SwatchItem } from "./SwatchItem"; import { SceneCollection } from "./SceneCollection"; import { ProductBrand } from "./ProductBrand"; export declare class SceneInfo extends DataItem implements SwatchItem { constructor(dataUrl?: string); collection: SceneCollection; get brand(): ProductBrand; get parent(): DataItem | undefined; get hasColumns(): boolean; get path(): string; load(json: SceneConfig): void; }