import { type AxiosPromise, type AxiosRequestConfig } from "axios"; import { type ITigerClientBase } from "@gooddata/api-client-tiger"; import { type IExportResult } from "@gooddata/sdk-backend-spi"; export interface IPayloadBase { workspaceId: string; exportId: string; } declare const EXPORT_GETTERS: Record AxiosPromise>; type ExportGetter = keyof typeof EXPORT_GETTERS; /** * Handles the polling for export results including timeout handling, error parsing and more. */ export declare function handleExportResultPolling(client: ITigerClientBase, payload: IPayloadBase, exportGetter: ExportGetter, timeout?: number): Promise; export {}; //# sourceMappingURL=exportPolling.d.ts.map