import { WSEvents } from 'guilded-api-typings';
import { Client } from '../../structures/Client';
/**
 * Handle the ServerChannelCreated event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function created(client: Client, data: WSEvents['ServerChannelCreated']): void;
/**
 * Handle the ServerChannelUpdated event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function updated(client: Client, data: WSEvents['ServerChannelUpdated']): void;
/**
 * Handle the ServerChannelDeleted event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function deleted(client: Client, data: WSEvents['ServerChannelDeleted']): void;
//# sourceMappingURL=channel.d.ts.map