import { ConfigService } from '@nestjs/config';
export declare class PaymentConfigService {
    private configService;
    constructor(configService: ConfigService);
    get paymeConfig(): {
        merchantId: string;
        key: string;
        apiUrl: string;
    };
    get clickConfig(): {
        serviceId: string;
        merchantId: string;
        secretKey: string;
        apiUrl: string;
    };
    get uzcardConfig(): {
        terminalId: string;
        terminalUserId: string;
        serviceId: string;
        apiUrl: string;
    };
    get humoConfig(): {
        merchantId: string;
        secretKey: string;
        apiUrl: string;
    };
    get apelsinConfig(): {
        terminalKey: string;
        password: string;
        apiUrl: string;
    };
    get appConfig(): {
        port: number;
        nodeEnv: string;
    };
}
