type Process = {
    runtime: "deno" | "node" | "bun" | "browser" | "unknown";
    version: string;
};
/**
 * Detects the current runtime environment (Node.js, Deno, Bun, or Browser).
 */
export declare function detectRuntime(): Process;
export {};
//# sourceMappingURL=detect-runtime.d.ts.map