import { type DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js"; import type { GatewayDaemonRuntime } from "./daemon-runtime.js"; export declare function resolveGatewayDevMode(argv?: string[]): boolean; export declare function resolveDaemonInstallRuntimeInputs(params: { env: Record; runtime: GatewayDaemonRuntime; devMode?: boolean; nodePath?: string; }): Promise<{ devMode: boolean; nodePath?: string; }>; export declare function emitDaemonInstallRuntimeWarning(params: { env: Record; runtime: GatewayDaemonRuntime; programArguments: string[]; warn?: DaemonInstallWarnFn; title: string; }): Promise; export declare function resolveDaemonNodeBinDir(nodePath?: string): string[] | undefined;