import { IDtoParser, BggForumlistDto } from "../../dto";
import { IFetcher } from "../../fetcher";
import { IQueryBuilder } from "../../query";
import { IForumlistRequest } from "../../request";
import { IResponseParser } from "../../responseparser";
import { IBggForumlistClient } from "../interface/IBggClients";
export declare class BggForumlistClient implements IBggForumlistClient {
    resource: string;
    builder: IQueryBuilder<IForumlistRequest>;
    fetcher: IFetcher<string, string>;
    responseParser: IResponseParser<string, any>;
    dtoParser: IDtoParser<BggForumlistDto>;
    constructor(builder: IQueryBuilder<IForumlistRequest>, fetcher: IFetcher<string, string>, responseParser: IResponseParser<string, any>, dtoParser: IDtoParser<BggForumlistDto>);
    query(request: IForumlistRequest): Promise<BggForumlistDto[]>;
}
