import type { Configuration } from 'webpack'; export declare const SSR_ENTRY_FILE = "index.js"; /** _external_ base url for static files. (is not a folder) * @example * "http://localhost:3000/public/main.88a88d47d86aaabc0230.js" */ export declare const PUBLIC_PATH = "/public"; declare enum Targets { ssr = "ssr", browser = "browser" } export declare function calcOutputPath(appName: string, target: Targets | keyof typeof Targets): string; export declare function clientConfig(): Configuration; export declare function ssrConfig(): Configuration; export declare function buildConfig({ outputPath }: { outputPath: string; }): Configuration; export declare function ssrBuildConfig({ outputPath }: { outputPath: string; }): Configuration; export {};