import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetInterestHistoryItems implements Serializable {
    /**
     * currency
     */
    currency: string;
    /**
     * Daily interest rate
     */
    dayRatio: string;
    /**
     * Interest amount
     */
    interestAmount: string;
    /**
     * Interest Timestamp
     */
    createdTime: number;
    /**
     * Private constructor, please use the corresponding static methods to construct the object.
     */
    private constructor();
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetInterestHistoryItems;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetInterestHistoryItems;
}
