import { IBggDto } from "../interface";
import { BggSearchItemDto } from "./subdto";
export declare class BggSearchDto implements IBggDto {
    id: number;
    total: number;
    items: BggSearchItemDto[];
}
