import './utils/silence-mobx-react-lite-warning';
import { type Manifest, type Options } from '@expofp/config';
import { type Ref } from '@expofp/resolve';
import { type FloorPlan, type FloorPlanOptions } from './types';
export declare function load(manifestRef: Manifest | Ref<Manifest>, options?: Options & FloorPlanOptions): Promise<FloorPlan>;
declare global {
    interface Window {
        /** @deprecated */
        ___fp?: FloorPlan;
        /** @deprecated temporary placeholder for async initialization in iOS/Android SDK */
        ___fpResolve?: (fp: FloorPlan) => void;
        __expofpReady?: CustomEvent<{
            floorplan: FloorPlan;
        }>;
    }
}
//# sourceMappingURL=load.d.ts.map