import type { RuntimeDriver } from '../types'; export declare class NodeRuntimeDriver implements RuntimeDriver { readonly name = "node"; readonly host: import("../../host/node/NodeRuntimeHost").NodeRuntimeHost; readonly platform: import("../../platform/node/NodeRuntimePlatform").NodeRuntimePlatform; readonly cssRunner: import("../../runner/node/CommunitySolidServerCssRunner").CommunitySolidServerCssRunner; readonly apiRunner: import("../../runner/node/NodeApiRuntimeRunner").NodeApiRuntimeRunner; readonly gatewayRunner: import("../../runner/node/NodeGatewayRuntimeRunner").NodeGatewayRuntimeRunner; } export declare const nodeRuntimeDriver: NodeRuntimeDriver;