import type { Response } from 'express';
import { ConfigService } from '@nestjs/config';
import { EasebuzzService } from './easebuzz.service';
import { WalletService } from './wallet.service';
export declare class EasebuzzController {
    private readonly easebuzz;
    private readonly wallet;
    private readonly config;
    constructor(easebuzz: EasebuzzService, wallet: WalletService, config: ConfigService);
    handleReturn(body: any, res: Response): Promise<void>;
}
