import { TEnv } from '@antscorp/antsomi-ui/es/types/config'; import { Auth } from '../../types'; import { AxiosRequestConfig } from 'axios'; import { TFilter } from '@antscorp/antsomi-ui'; type ResponseType = { data: { entries: Record[]; meta: { contextEvents: Record>; isNext: boolean; }; userIds: { type: string; list: string[]; }; }; }; type Params = { customerId: string; filters: TFilter; limit: number; page: number; env: TEnv; auth: Auth; cdp_domain?: string; config?: AxiosRequestConfig; }; export declare const getCustomerTimeline: (params: Params) => Promise<{ entries: Record[]; meta: { contextEvents: Record>; isNext: boolean; }; userIds: { type: string; list: string[]; }; } | null>; export {};