import { HttpClient } from '../../core/http-client'; import { CampaignTagsSearchResult } from './types'; export declare class CampaignTagsSearchService { private readonly httpClient; private readonly endpoint; constructor(httpClient: HttpClient); /** * Search campaigns by tag(s) * @param tags - Single tag or array of tags (max 5) */ search(tags: string | string[]): Promise; private validateTags; private mapResponse; private mapCampaignWithIndicators; private mapIndicators; } //# sourceMappingURL=campaign-tags-search.d.ts.map