import type { TJsonValue } from 'typeon'; export declare type TRunWebAppOptions = { entryPointPath: string; htmlTemplatePath: string; browsersList?: string[]; assetsPath?: string; props?: TJsonValue; isQuiet?: boolean; shouldOpenBrowser?: boolean; }; export declare const runWebApp: (options: TRunWebAppOptions) => Promise<() => Promise>;