import { CreateEventRequest } from '../../model/index'; import { FSResponse, FullStoryOptions } from '../../http'; export declare class EventsApi { readonly defaultBasePath = "https://api.fullstory.com"; private basePath; private httpClient; constructor(opts: FullStoryOptions); /** * Creates one event with the specified details. * @summary Create Event * @param body * @param idempotencyKey Optional header for making the request idempotent */ createEvent(request: { body: CreateEventRequest; idempotencyKey?: string; }): Promise>; }