import type { Asset } from './Asset.js';
import type { Event } from './Event.js';
import type { Listing } from './Listing.js';
import type { MyHistoryResponse } from './MyHistoryResponse.js';
import type { Purchase } from './Purchase.js';
export interface MyHistory {
    _data: MyHistoryResponse;
    success: boolean;
    pageSize: number;
    totalCount: number;
    start: number;
    assets: Asset[];
    events: Event[];
    purchases: Purchase[];
    listings: Listing[];
}
