import { ICommonParams } from '../../../modules/IModule';
import ICCPayment from "../../../modules/payment/Payment";
declare class PaymentImpl implements ICCPayment {
    private static instance;
    private module;
    private constructor();
    static getModule(): PaymentImpl;
    placeOrder(obj?: ICommonParams): void;
    startPay(obj?: ICommonParams): void;
}
export default PaymentImpl;
