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