import type { GatewayRuntimeHandle, GatewayRuntimeRunner, GatewayRuntimeRunnerStartOptions } from '../types'; export declare class NodeGatewayRuntimeRunner implements GatewayRuntimeRunner { readonly name = "node-gateway-runtime"; start(options: GatewayRuntimeRunnerStartOptions): Promise; } export declare const nodeGatewayRuntimeRunner: NodeGatewayRuntimeRunner;