import { SearchOptions, SearchResults } from "../types/index.js"; /** * Searches for works based on a query and filters * @param options Search options * @returns A promise that resolves to a paginated list of works search results */ declare function search(options: SearchOptions, requestOptions?: { proxyUrl?: string; }): Promise; /** * Gets a paginated list of works for a specific tag * @param tag The tag to search for * @param options Search options * @param requestOptions Request options * @returns A promise that resolves to a paginated list of works */ declare function getTagWorks(tag: string, page?: number, options?: SearchOptions, requestOptions?: { proxyUrl?: string; }): Promise; export { search, getTagWorks };