import { PaymentMethod } from '../../Services';
import { IVerify } from './Models/Verify';
import { ServiceCode } from '../../Utils';
export default class Surepay extends PaymentMethod {
    defaultServiceCode(): ServiceCode;
    verify(payload: IVerify): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").DataRequestData>;
}
