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