/** Default development server hostname. */ export declare const DEFAULT_HOSTNAME = "localhost"; /** Default development server port. */ export declare const DEFAULT_PORT = 8081; /** Default webpack config locations. */ export declare const DEFAULT_WEBPACK_CONFIG_LOCATIONS: string[]; /** Default rspack config locations. */ export declare const DEFAULT_RSPACK_CONFIG_LOCATIONS: string[]; /** * Dev Server supported asset types. * * These are the types of assets that will be served from the compiler output * instead of the local filesystem. */ export declare const DEV_SERVER_ASSET_TYPES: RegExp;