import { Action } from '../../lib/pieces/Action'; import type { MessageUpdateDispatch } from '@klasa/ws'; export default class CoreAction extends Action { /** * Processes the event data from the websocket. * @since 0.0.1 * @param data The raw data from {@link Client#ws} */ run(data: MessageUpdateDispatch): void; check(): null; build(): null; cache(): void; }