export declare class BggCollectionItemDto {
    objectid: number;
    collid: number;
    objecttype: string;
    subtype: string;
    yearpublished: number;
    numplays: number;
    image: string;
    thumbnail: string;
    comment: string;
    name: string;
    originalname: string;
    status: BggCollectionItemStatusDto;
}
declare class BggCollectionItemStatusDto {
    own: number;
    prevowned: number;
    fortrade: number;
    want: number;
    wanttoplay: number;
    wanttobuy: number;
    wishlist: number;
    wishlistpriority: number;
    preordered: number;
    lastmodified: string;
}
export {};
