/** JavaScript runtime environments. */ export type Runtime = "browser" | "node" | "webworker"; /** * Does best effort detection of the runtime environment. * * @returns The runtime environment. */ export declare const detect: () => Runtime; export declare const RUNTIME: Runtime; //# sourceMappingURL=detect.d.ts.map