/**
 * Class Commission
 */
export declare class Commission {
    /**
     * Merchant identifier for the commission.
     */
    merchant: string;
    /**
     * Total amount to refund this item, in currency's minor units.
     */
    amount: number;
}
