import type { Message as APIMessage } from 'revolt-api'; import { Action } from './Action'; export declare class MessageUpdateAction extends Action { handle(data: { id: string; channel: string; data: APIMessage; }): unknown; }