import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { GetTimelineParams, WebitelCasesGetTimelineCounterResponse, WebitelCasesGetTimelineResponse } from '../_models'; export declare const // --- title start getCaseTimeline: (axiosInstance?: AxiosInstance) => { getTimeline: (caseId: string, params?: GetTimelineParams, options?: AxiosRequestConfig) => Promise>; getTimelineCounter: (caseId: string, options?: AxiosRequestConfig) => Promise>; }; export type GetTimelineResult = AxiosResponse; export type GetTimelineCounterResult = AxiosResponse;