import type { IframeMessenger } from "../iframe-messenger.js";
import { ExperimentalAnalysisApi } from "./analysis.js";
import { ExperimentalHousingApi } from "./housing.js";
import { ExperimentalRenderApi } from "./render.js";
/**
 * Experimental APIs are subject to change at any time without notice.
 *
 * Do not rely on experimental APIs in production code.
 *
 * @remarks
 * Available via {@link auto.Forma | Forma}.{@link index.EmbeddedViewSdk.experimental | experimental}.
 */
export declare class ExperimentalApi {
    readonly analysis: ExperimentalAnalysisApi;
    readonly housing: ExperimentalHousingApi;
    readonly render: ExperimentalRenderApi;
    /** @hidden */
    constructor(iframeMessenger: IframeMessenger);
}
