/** * Configuration for Sensor Tower MCP Server */ export declare const API_BASE_URL: string; export interface Config { tokens: string[]; transport: 'stdio' | 'http'; port: number; } export declare function getConfig(): Config; export declare function parseArgs(): Config; //# sourceMappingURL=config.d.ts.map