import type { User as APIUser } from 'revolt-api'; import { Action } from './Action'; export declare class UserUpdateAction extends Action { handle(data: { id: string; data: APIUser; }): unknown; }