/** * Type definitions for OECD MCP Server */ export interface OECDCategory { id: string; name: string; description: string; exampleDatasets: string[]; } export interface PopularDataset { id: string; name: string; description: string; category: string; } export interface DataflowFilter { category?: string; limit?: number; } export interface DataQuery { dataflowId: string; filter?: string; startPeriod?: string; endPeriod?: string; lastNObservations?: number; } export interface IndicatorSearch { indicator: string; category?: string; } export declare const OECD_CATEGORIES: OECDCategory[]; export declare const POPULAR_DATASETS: PopularDataset[]; //# sourceMappingURL=types.d.ts.map