export type RuntimeFacts = { nodeMajor: number; platform: NodeJS.Platform; }; /** * Startup guards — fail with an actionable message before any process is * spawned, instead of failing mid-run with an unrelated error. */ export declare function checkRuntime(facts?: RuntimeFacts): string | null;