import { IBggDto } from "../interface";
import { BggLinkDto } from "./subdto";
export declare class BggFamilyDto implements IBggDto {
    name: string;
    description: string;
    thumbnail: string;
    image: string;
    id: number;
    type: string;
    value: string;
    things: BggLinkDto[];
}
