import type { Fetcher } from "./fetcher"; import type { SearchArgs, SearchResponse } from "./types"; /** * Search-related API operations */ export declare class SearchAPI { private fetcher; constructor(fetcher: Fetcher); /** * Search across collections, tokens, NFTs, and accounts. */ search(args: SearchArgs): Promise; }