import { IBggDto } from "../interface";
import { BggCollectionItemDto } from "./subdto";
export declare class BggCollectionDto implements IBggDto {
    id: number;
    totalitems: number;
    pubdate: string;
    items: BggCollectionItemDto[];
}
