import type { DataSource, SearchInput, SearchOutput, BrowseInput } from '../types.js'; /** * Search across all sources */ export declare function search(input: SearchInput): Promise; /** * Browse by category or list popular items */ export declare function browse(input: BrowseInput): Promise; /** * Get all data source statuses */ export declare function getSources(): { sources: DataSource[]; total: number; };