import { Runtime } from "./types.js";
export default class ExecutionRuntime {
    private constructor();
    static isDeno(): boolean;
    static isBun(): boolean;
    static isNode(): boolean;
    static isFirefox(): boolean;
    static isChrome(): boolean;
    static isSafari(): boolean;
    static type(): Runtime;
}
