import { type DimensionHeader, type ExecutionResult } from "@gooddata/api-client-tiger"; import { type IForecastConfig, type IForecastResult } from "@gooddata/sdk-backend-spi"; import { type DataValue, type IResultHeader } from "@gooddata/sdk-model"; export type Data = DataValue[][]; export type TransformedForecastResult = { readonly headerItems: IResultHeader[][][]; readonly prediction: Data; readonly low: Data; readonly high: Data; readonly loading: boolean; }; export declare function transformForecastResult(result: ExecutionResult, forecastResults: IForecastResult | undefined, forecastConfig: IForecastConfig | undefined, transformDimensionHeaders: (dimensionHeaders: DimensionHeader[], forecastResults: IForecastResult | undefined) => IResultHeader[][][]): TransformedForecastResult; //# sourceMappingURL=forecast.d.ts.map