import type { ApplicationService } from '@adonisjs/core/types'; import type { AdapterFactory, JobFactory, QueueConfig } from './types/main.js'; /** * Resolve adapter factories from config providers. * * Adapters in the config can be either: * - Direct factory functions * - ConfigProvider objects that need to be resolved * * This function normalizes them all to factory functions. */ export declare function resolveAdapters(config: QueueConfig, app: ApplicationService): Promise>; export declare function resolveJobFactory(config: QueueConfig, app: ApplicationService): JobFactory;