import { Amount } from "./amount";
export declare class CashOutTransfer {
    "amount": Amount;
    /**
    * The reference of the cashout transfer.
    */
    "id": string;
    /**
    * The type of the cashout transfer.  Possible values:  - **cashoutRepayment**: Corresponds to the transfer created to deduct the cashout amount after settlement. - **cashoutFee**: Corresponds to the transfer created to debit the cashout fee form the user\'s balance account.
    */
    "type": CashOutTransfer.TypeEnum;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace CashOutTransfer {
    enum TypeEnum {
        CashoutRepayment = "cashoutRepayment",
        CashoutFee = "cashoutFee"
    }
}
