import { Runnable } from './runnable'; export declare class RunnerPool { private readonly lock; constructor(limit: number); run(task: Runnable): Promise; }