import { LibModule } from '../../utils';
import { Payment } from './interfaces/payment.interface';
import { PaymentRequest } from './interfaces/payment-request.interface';
import { PaymentResponse } from './interfaces/payment-response.interface';
export declare class PaymentModule extends LibModule {
    get(paymentId: string): Promise<Payment>;
    create(payment: PaymentRequest): Promise<PaymentResponse>;
    protected getUrl(): string;
    private getAccessSign;
    private getCreationSign;
}
