import { PlatformApiClient, type TaskStatusResponse } from "../clients/PlatformApiClient.js"; interface PollOptions { pollIntervalMs?: number; maxAttempts?: number; } export declare function pollForTaskResult(apiClient: PlatformApiClient, taskId: string, options?: PollOptions): Promise; export {};