import type { Route } from './types.js';
/**
 * Generates the server build module content
 * @param routes The route manifest
 * @param options Build options
 * @returns The generated module content as a string
 */
declare function generateServerBuild(routes: Record<string, Route>, options: {
    entryServerPath: string;
    assetsBuildDirectory: string;
    basename: string;
    appDirectory: string;
    ssr: boolean;
    federation?: boolean;
}): string;
export { generateServerBuild };
