import type { QueueDriverList } from './types.js'; /** * A singleton collection of drivers for the entire lifecycle of * the application. */ declare class DriversCollection { list: Partial; extend(driverName: Name, factoryCallback: QueueDriverList[Name]): this; create(name: Name, config: Parameters[0]): import("./drivers/database.js").default; } declare const _default: DriversCollection; export default _default;