import { IDtoParser, BggCollectionDto } from "../../dto"; import { IFetcher } from "../../fetcher"; import { IQueryBuilder } from "../../query"; import { ICollectionRequest } from "../../request"; import { IResponseParser } from "../../responseparser"; import { IBggCollectionClient } from "../interface"; import { BaseBggClient } from "./BaseBggClient"; export declare class BggCollectionClient extends BaseBggClient implements IBggCollectionClient { constructor(builder: IQueryBuilder, fetcher: IFetcher, responseParser: IResponseParser, dtoParser: IDtoParser); }