import { PaymentsService } from './payments.service';
interface IOrder {
    order: {
        order_id: string;
        currency?: string;
        value: string;
        description: string;
        email: string;
        redirect: string;
    };
    meta: {
        currency?: string;
        webhook: string;
    };
}
export declare class PaymentsController {
    private readonly paymentsService;
    constructor(paymentsService: PaymentsService);
    getPayment(body: Partial<IOrder>): Promise<any>;
}
export {};
