import type { Channel as APIChannel } from 'revolt-api'; import { ServerChannel } from './index'; import { Client } from '../index'; import { ChannelTypes } from '../util/index'; declare type APIVoiceChannel = Extract; export declare class VoiceChannel extends ServerChannel { readonly type = ChannelTypes.VOICE; constructor(client: Client, data: APIVoiceChannel); protected _patch(data: APIVoiceChannel): this; ack(): Promise; } export {};