/** * Store Marketing tools for Sensor Tower MCP */ import { SensorTowerClient } from '../client'; export declare function registerStoreMarketingTools(client: SensorTowerClient): { get_featured_today_stories: { description: string; inputSchema: { type: string; properties: { country: { type: string; description: string; default: string; }; start_date: { type: string; description: string; }; end_date: { type: string; description: string; }; }; required: never[]; }; handler: (args: any) => Promise; }; get_featured_apps: { description: string; inputSchema: { type: string; properties: { category: { type: string; description: string; }; country: { type: string; description: string; default: string; }; start_date: { type: string; description: string; }; end_date: { type: string; description: string; }; }; required: string[]; }; handler: (args: any) => Promise; }; }; //# sourceMappingURL=store-marketing.d.ts.map