import { HttpClient } from '../../core/http-client'; import { TagSearchOptions, TagSearchResult } from './types'; export declare class TagSearchService { private readonly httpClient; private readonly endpoint; constructor(httpClient: HttpClient); /** * Search files by tag(s) * @param tags - Single tag or array of tags (max 3) * @param options - Search options (limit, start, end) */ search(tags: string | string[], options?: TagSearchOptions): Promise; private validateTags; private mapResponse; } //# sourceMappingURL=tag-search.d.ts.map