import { Config, Provider } from '../types';
/**
 * Get the appropriate provider implementation based on configuration
 * @param config - The loaded configuration
 * @returns Provider implementation
 */
export declare function getProvider(config: Config): Provider;
