import type { TJsonValue } from 'typeon'; export declare type TBuildWebAppReleaseOptions = { entryPointPath: string; outputPath: string; htmlTemplatePath: string; browsersList?: string[]; globalConstants?: { [key: string]: string; }; globalAliases?: { [key: string]: string; }; props?: TJsonValue; isQuiet?: boolean; shouldGenerateSourceMaps?: boolean; shouldGenerateBundleAnalyzerReport?: boolean; }; export declare const buildWebAppRelease: (userOptions: TBuildWebAppReleaseOptions) => Promise;