import Base, { MaybeRaw } from "../../../Base"; import { CosmoEvents as ICosmoEvents } from "../../../interfaces/cosmo/event"; /** * @class Event * @extends Base * * @remarks * **Under development, breaking changes possible** * * Represents a Event resource in Cosmo, providing methods to interact with the Event API. */ export declare class CosmoEvent extends Base { protected getEndpoint(endpoint: string): string; /** * Get a list of Events available in Cosmo * @remarks * ** Under development, breaking changes possible** * @returns An Object holding all cosmo events sorted */ getCosmoEvents(raw?: { raw: R; }): Promise>; }