import { PayablePaymentMethod } from '../../Services';
import { IPay } from './Models/Pay';
import { IRefund } from './Models/Refund';
import { ICapture } from './Models/Capture';
import { ServiceCode } from '../../Utils';
export default class Billink extends PayablePaymentMethod {
    defaultServiceCode(): ServiceCode;
    pay(payload: IPay): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
    refund(payload: IRefund): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
    authorize(payload: IPay): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
    cancelAuthorize(payload: IRefund): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
    capture(payload: ICapture): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
}
