import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { ContactsGetTimelineCounterResponse, ContactsGetTimelineResponse } from '../_models'; export declare const getGetTimelineTimelineResponseMock: (overrideResponse?: Partial>) => ContactsGetTimelineResponse; export declare const getGetTimelineCounterTimelineResponseMock: (overrideResponse?: Partial>) => ContactsGetTimelineCounterResponse; export declare const getGetTimelineTimelineMockHandler: (overrideResponse?: ContactsGetTimelineResponse | ((info: Parameters[1]>[0]) => Promise | ContactsGetTimelineResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getGetTimelineCounterTimelineMockHandler: (overrideResponse?: ContactsGetTimelineCounterResponse | ((info: Parameters[1]>[0]) => Promise | ContactsGetTimelineCounterResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getTimelineMock: () => import("msw").HttpHandler[];