import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetSubAccountItems implements Serializable {
    /**
     * Sub-account name
     */
    accountName: string;
    /**
     * Sub-account UID
     */
    uid: string;
    /**
     * Creation time, Unix timestamp (milliseconds)
     */
    createdAt: number;
    /**
     * Sub-account VIP level
     */
    level: 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): GetSubAccountItems;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetSubAccountItems;
}
