import { IBggDto } from "../interface";
import { BggForumThreadDto } from "./BggForumThreadDto";
export declare class BggForumDto implements IBggDto {
    id: number;
    lastpostdate: string;
    numposting: number;
    numthreads: number;
    numposts: number;
    title: string;
    threads: BggForumThreadDto[];
}
