import type { SearxMeta, SearxResponse, SearxSearchResult } from "./types.js"; export declare function normalizeSearxMeta(data: SearxResponse): SearxMeta; export declare function searxSearchSingle(query: string, category: string, fetchCount: number, timeRange?: string, language?: string, engines?: string, site?: string | string[]): Promise; export declare function searxSearch(query: string, category: string, numResults: number, timeRange?: string, domainProfile?: string, expand?: boolean, language?: string, engines?: string, site?: string | string[]): Promise;