import { OxylabsAIStudioClient } from '../client.js'; import { MapOptions, RunResponse } from '../types.js'; /** * AI-Map Service * Handles all AI-Map related API calls */ export declare class AiMapService { private client; constructor(client: OxylabsAIStudioClient); /** * Submit map request (POST /map) */ submitMapRequest(options: MapOptions): Promise; /** * Get map run data/results (GET /map/run/data) */ getMapRunData(runId: string): Promise; /** * Synchronous mapping (wait for results) */ map(options: MapOptions, timeout?: number, pollInterval?: number): Promise; } //# sourceMappingURL=aiMap.d.ts.map