import { type Server, type IncomingMessage, type ServerResponse } from 'node:http'; import { AnySpiceflow } from './spiceflow.ts'; export declare function listenForNode(app: AnySpiceflow, port: number, hostname?: string): Promise<{ port: number; server: Server; }>; export declare function handleForNode(app: AnySpiceflow, req: IncomingMessage, res: ServerResponse, context?: { state?: {} | undefined; }): Promise; //# sourceMappingURL=_node-server.d.ts.map