import { ProductAR, ProductAROptions } from "./product-ar";
import { LauncherAR } from "./launcher-ar";
/**
 * Allows launching Product AR by providing a SceneProduct ID instead.
 * SceneProducts are much more convenient to grab from the Plattar CMS
 */
export declare class SceneProductAR extends ProductAR {
    private readonly _sceneProductID;
    private _attachedProductID;
    constructor(options: ProductAROptions);
    get sceneProductID(): string;
    get productID(): string;
    init(): Promise<LauncherAR>;
}
