import { WorkerProxyFunction } from "../models"; export declare class WorkerProxy { static _worker: Worker; private static _initialized; private static _handlers; private static _promiseResolvers; static call(topic: WorkerProxyFunction, parameter: TParamType): Promise; static addFunction(topic: WorkerProxyFunction, handler: (data: TSendType) => TReturnType): void; private static ensureInitialized; private static callHandlerMessage; }