import type { AppConfig } from '../config/config.js';
import type { WorkerFunctions } from './types.js';
/**
 * Factory function to create a worker pool with the given configuration.
 * @param configData The application configuration
 * @returns The worker functions to execute tasks in the worker pool
 */
export declare const createWorkerPool: (configData: AppConfig) => WorkerFunctions;
