import type { GammaMarket, GammaEvent } from '../types.js'; export declare function getMarkets(params?: { limit?: number; active?: boolean; closed?: boolean; order?: string; ascending?: boolean; }): Promise; export declare function getEvents(params?: { limit?: number; active?: boolean; closed?: boolean; order?: string; ascending?: boolean; }): Promise; export declare function searchMarkets(query: string, limit?: number, activeOnly?: boolean): Promise; export declare function getMarketBySlug(slug: string): Promise;