import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { ContactsGetTimelineCounterResponse, ContactsGetTimelineResponse, GetTimelineTimelineParams } from '../_models'; export declare const // --- title start getTimeline: (axiosInstance?: AxiosInstance) => { getTimelineTimeline: (contactId: string, params?: GetTimelineTimelineParams, options?: AxiosRequestConfig) => Promise>; getTimelineCounterTimeline: (contactId: string, options?: AxiosRequestConfig) => Promise>; }; export type GetTimelineTimelineResult = AxiosResponse; export type GetTimelineCounterTimelineResult = AxiosResponse;