import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { BackgroundProcess } from '../models'; export declare const BackgroundProcessApiAxiosParamCreator: (configuration?: Configuration) => { getLatestByType: (type?: GetLatestByTypeTypeEnum, options?: RawAxiosRequestConfig) => Promise; update: (encodedKey: string, body: string, options?: RawAxiosRequestConfig) => Promise; }; export declare const BackgroundProcessApiFp: (configuration?: Configuration) => { getLatestByType(type?: GetLatestByTypeTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; update(encodedKey: string, body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; export declare const BackgroundProcessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { getLatestByType(type?: GetLatestByTypeTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise; update(encodedKey: string, body: string, options?: RawAxiosRequestConfig): AxiosPromise; }; export declare class BackgroundProcessApi extends BaseAPI { getLatestByType(type?: GetLatestByTypeTypeEnum, options?: RawAxiosRequestConfig): Promise>; update(encodedKey: string, body: string, options?: RawAxiosRequestConfig): Promise>; } export declare const GetLatestByTypeTypeEnum: { readonly CronJobs: "CRON_JOBS"; readonly EarlyManualCronJobsTrigger: "EARLY_MANUAL_CRON_JOBS_TRIGGER"; readonly ManualCronJobsTrigger: "MANUAL_CRON_JOBS_TRIGGER"; }; export type GetLatestByTypeTypeEnum = (typeof GetLatestByTypeTypeEnum)[keyof typeof GetLatestByTypeTypeEnum];