import { Hono } from "hono"; interface StartBundleServerOptions { bundlePath: string; clientPath?: string; cwd: string; port: number; hostname?: string; inspectSecretHash?: string; publicInspect?: boolean; allowedOrigins?: string[]; maxRestoreBytes?: number; } export declare function createBundleServerApp(options: StartBundleServerOptions): Promise; export declare function serveBundleServer(options: StartBundleServerOptions): Promise<{ app: Hono; server: import("@hono/node-server").ServerType; port: number; }>; export {}; //# sourceMappingURL=start-server.d.ts.map