import { IApiClient } from "./apiClient";
export declare class Poller {
    private api;
    private apiUrl;
    private headers;
    constructor(api: IApiClient, apiUrl: string, headers: Record<string, string>);
    waitForCompletion(promptId: string, timeout: number): Promise<any>;
}
