import { UniversalWorker, WorkerScript } from './interfaces/IThread.js'; export declare const isNode = false; export declare const isReactNative = true; export declare const isBrowser = false; export declare function detectRuntime(): 'node' | 'browser' | 'react-native' | 'unknown'; export declare function createWorker(_workerScript: WorkerScript): Promise>;