export declare const ERROR_TYPES: {
    RUNTIME: string;
    MESSAGE_ERROR: string;
};
export declare const ERROR_MESSAGES: {
    readonly UNKNOWN_RUNTIME: "Unknown worker runtime error";
    readonly DESERIALIZATION_FAILED: "Failed to deserialize message from worker";
};
export declare const WORKER_EVENTS: {
    readonly ERROR: "error";
    readonly MESSAGE_ERROR: "messageerror";
};
