import type { Entrypoint, ServerRoute } from '@modern-js/types'; import type { AppNormalizedConfig } from '../../types/index.js'; import type { AppToolsContext } from '../../types/plugin.js'; export declare const getServerRoutes: (entrypoints: Entrypoint[], { appContext, config, }: { appContext: AppToolsContext; config: AppNormalizedConfig; }) => ServerRoute[]; export declare const getProdServerRoutes: (distDirectory: string) => any; export declare const getProdEntrypoints: (distDirectory: string, routes: ServerRoute[], mainEntryName?: string) => Entrypoint[];