import { Payment } from "../namespaces/payment.namespace";
import { CommonOperation } from "./common.operation";
/**
 * Payment operation
 * @description Operation that executes payment
 */
export declare class PaymentOperation extends CommonOperation<Payment.Interfaces.IOperationData, Payment.Interfaces.IResponse> {
    /**
     * Execute
     */
    execute(): Promise<Payment.Interfaces.IResponse>;
}
