import { IApiResponse, IRefund, RefundPayload } from '..'; export interface IRefundService { postRefund(paymentId: string, accountId: string, authToken: string, refundBody: RefundPayload): Promise>; } export declare class RefundService implements IRefundService { postRefund(paymentId: string, accountId: string, authToken: string, refundBody: RefundPayload): Promise>; }