import { IArenaConfig, IQueue } from '../types'; export default class Queues { _queues: Record>; _config: IArenaConfig; useCdn: { value: boolean; useCdn: boolean; }; constructor(config: IArenaConfig); list(): import("../types").QueueConfigType[]; setConfig(config: IArenaConfig): void; private _checkConstructors; get(queueName: string, queueHost: string): Promise; /** * Creates and adds a job with the given `data` to the given `queue`. * * @param {IQueue} queue A bee or bull queue class * @param {Object} data The data to be used within the job * @param {String} name The name of the Bull job (optional) */ set(queue: IQueue, data: any, name: string): Promise; }