import Client from '../Client'; export default class BaseEvent { name: string; /** Name of the event for which the body is executed when emitted. */ constructor(eventName: string); /** Event body which gets executed. */ run(client: Client, ...data: Array): Promise; }