import type { IApp, IEntryOptions, IEnvParamsMap } from '@visactor/vrender-core';
export type TVRenderBrowserAppEntryOptions = IEntryOptions & {
    envParams?: IEnvParamsMap['browser'];
};
export declare function createBrowserVRenderApp(options?: TVRenderBrowserAppEntryOptions): IApp;
