import { BankTransaction } from "./BankTransaction";
import { Refund } from "./Refund";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class RefundBankTransaction extends TransactionAwareEntity {
    /**
    *
    */
    'bankTransaction'?: BankTransaction;
    /**
    * The language that is linked to the object.
    */
    'language'?: string;
    /**
    *
    */
    'refund'?: Refund;
    /**
    * Specify the posting amount in the refund's currency.
    */
    'refundCurrencyAmount'?: number;
    /**
    *
    */
    'refundCurrencyValueAmount'?: number;
    /**
    * The ID of the space view this object is linked to.
    */
    'spaceViewId'?: number;
    /**
    * The version is used for optimistic locking and incremented whenever the object is updated.
    */
    'version'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { RefundBankTransaction };
