/** * Search and Discovery tools for Sensor Tower MCP */ import { SensorTowerClient } from '../client'; export declare function registerSearchTools(client: SensorTowerClient): { get_publisher_apps: { description: string; inputSchema: { type: string; properties: { os: { type: string; enum: string[]; description: string; }; publisher_id: { type: string; description: string; }; limit: { type: string; description: string; default: number; }; offset: { type: string; description: string; default: number; }; include_count: { type: string; description: string; default: boolean; }; }; required: string[]; }; handler: (args: any) => Promise; }; get_unified_publisher_apps: { description: string; inputSchema: { type: string; properties: { unified_id: { type: string; description: string; }; }; required: string[]; }; handler: (args: any) => Promise; }; get_app_ids_by_category: { description: string; inputSchema: { type: string; properties: { os: { type: string; enum: string[]; description: string; }; category: { type: string; description: string; }; start_date: { type: string; description: string; }; updated_date: { type: string; description: string; }; offset: { type: string; description: string; }; limit: { type: string; description: string; default: number; }; }; required: string[]; }; handler: (args: any) => Promise; }; }; //# sourceMappingURL=search.d.ts.map