index?: number
}
+/**
+* Processes a queue of tasks using Web Workers.
+*/
+export declare class Queue {
+ static get instances (): Queue[]
+ /**
+ * Creates a Web Worker from a stringified script.
+ *
+ * @param {string} worker - Stringified worker class body
+ * @param {number} [count=1] - Integer between 1 and CPU thread count shared among all Pools
+ */
+ constructor (worker: string)
+ assign (headers: Headers | null, data?: Data): Promise<any>
+ prioritize (headers: Headers | null, data?: Data): Promise<any>
+ terminate (): void
+}
+export declare const Bip44CkdWorker: Queue
+export declare const NanoNaClWorker: Queue
+export declare const SafeWorker: Queue
+
+
export type RolodexEntry = {
name: string
account: Account