import { IPay } from './Models/Pay'; import { PayablePaymentMethod } from '../../Services'; import { ServiceCode } from '../../Utils'; export default class IdealProcessing extends PayablePaymentMethod { protected _serviceVersion: number; defaultServiceCode(): ServiceCode; pay(data: IPay): import("../..").Request; payRemainder(payload: IPay): import("../..").Request; issuers(): Promise<{ [x: string]: string; }[] | undefined>; }