import { ConfigServiceInterface } from '../interfaces/config-service.interface';
export declare class ConfigService implements ConfigServiceInterface {
    get(key: string): string;
    getConfig(): Record<string, string>;
}
export declare const configService: ConfigService;
