import { Amount } from './amount';
import { Split } from './split';
export declare class PaymentAmountUpdateResource {
    'amount': Amount;
    /**
    * The reason for the amount update. Possible values:  * **delayedCharge**  * **noShow**  * **installment**
    */
    'industryUsage'?: PaymentAmountUpdateResource.IndustryUsageEnum;
    /**
    * The merchant account that is used to process the payment.
    */
    'merchantAccount': string;
    /**
    * The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment to update.
    */
    'paymentPspReference': string;
    /**
    * Adyen\'s 16-character reference associated with the amount update request.
    */
    'pspReference': string;
    /**
    * Your reference for the amount update request. Maximum length: 80 characters.
    */
    'reference': string;
    /**
    * An array of objects specifying how the amount should be split between accounts when using Adyen for Platforms. For details, refer to [Providing split information](https://docs.adyen.com/marketplaces-and-platforms/processing-payments#providing-split-information).
    */
    'splits'?: Array<Split>;
    /**
    * The status of your request. This will always have the value **received**.
    */
    'status': PaymentAmountUpdateResource.StatusEnum;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace PaymentAmountUpdateResource {
    enum IndustryUsageEnum {
        DelayedCharge = "delayedCharge",
        Installment = "installment",
        NoShow = "noShow"
    }
    enum StatusEnum {
        Received = "received"
    }
}
