import { TypedEmitter } from 'tiny-typed-emitter'; import type { PoolItemConfig, PoolItemOptions, PoolItemEvents } from '../types/pool.js'; import type { WorkerType } from '../constants/workers.js'; export declare class PoolItem extends TypedEmitter { readonly options: PoolItemOptions; constructor(config: PoolItemConfig); }