import { Amount } from './Amount'; import { PaymentOutcome } from './PaymentOutcome'; /** * Refund operation on the payment. A refund operation represents the intent to refund a previous charge. */ export declare class Refund { id?: string; amount?: Amount; outcome?: PaymentOutcome; constructor(refund: RefundProperties); } export interface RefundProperties { id?: string; amount?: Amount; outcome?: PaymentOutcome; }