/** * Utility tools for Sensor Tower MCP */ export declare function registerUtilityTools(): { get_country_codes: { description: string; inputSchema: { type: string; properties: {}; required: never[]; }; handler: () => Promise<{ countries: { code: string; name: string; }[]; total_count: number; }>; }; get_category_ids: { description: string; inputSchema: { type: string; properties: { os: { type: string; enum: string[]; description: string; }; }; required: string[]; }; handler: (args: any) => Promise<{ categories: { id: string; name: string; }[]; os: any; total_count: number; }>; }; get_chart_types: { description: string; inputSchema: { type: string; properties: {}; required: never[]; }; handler: () => Promise<{ chart_types: { topfreeapplications: string; toppaidapplications: string; topgrossingapplications: string; topfreeipadapplications: string; toppaidipadadapplications: string; topgrossingipadadapplications: string; }; }>; }; health_check: { description: string; inputSchema: { type: string; properties: {}; required: never[]; }; handler: () => Promise<{ status: string; service: string; transport: string; api_base_url: string; tools_available: number; }>; }; }; //# sourceMappingURL=utilities.d.ts.map