export interface RuntimeInfo { runtime: "bun" | "deno" | "node"; version: string; } /** * Detects the JavaScript runtime environment (Node.js, Deno, Bun, or unknown) * and its version. * * @returns An object containing the runtime type and version, or `undefined` * if the runtime cannot be detected. */ export declare function getRuntimeInfo(): RuntimeInfo | undefined; //# sourceMappingURL=runtime.d.ts.map