import { ApiListPromise } from '@sinch/sdk-client'; import { EventsApi } from './events-api'; import { ConversationEvent, DeleteEventRequestData, Recipient, GetEventRequestData, ListEventsRequestData, SendAgentJoinedEventRequestData, SendAgentLeftEventRequestData, SendCommentReplyEventRequestData, SendComposingEndEventRequestData, SendComposingEventRequestData, SendEventRequestData, SendGenericEventRequestData, SendEventResponse } from '../../../models'; export declare class EventsApiFixture implements Partial> { /** * Fixture associated to function delete */ delete: jest.Mock, [DeleteEventRequestData]>; /** * Fixture associated to function get */ get: jest.Mock, [GetEventRequestData]>; /** * Fixture associated to function list */ list: jest.Mock, [ListEventsRequestData]>; /** * Fixture associated to function send */ send: jest.Mock, [SendEventRequestData]>; /** * Fixture associated to function sendComposingEvent */ sendComposingEvent: jest.Mock, [ SendComposingEventRequestData ]>; /** * Fixture associated to function sendComposingEndEvent */ sendComposingEndEvent: jest.Mock, [ SendComposingEndEventRequestData ]>; /** * Fixture associated to function sendCommentReplyEvent */ sendCommentReplyEvent: jest.Mock, [ SendCommentReplyEventRequestData ]>; /** * Fixture associated to function sendAgentJoinedEvent */ sendAgentJoinedEvent: jest.Mock, [ SendAgentJoinedEventRequestData ]>; /** * Fixture associated to function sendAgentLeftEvent */ sendAgentLeftEvent: jest.Mock, [ SendAgentLeftEventRequestData ]>; /** * Fixture associated to function sendGenericEvent */ sendGenericEvent: jest.Mock, [ SendGenericEventRequestData ]>; }