import { APIChannel } from "../api"; import { Client } from "../Client"; import { ChannelType } from "./Channel"; import { ServerChannel } from "./ServerChannel"; export declare class TextChannel extends ServerChannel { get type(): ChannelType.Text; constructor(client: Client, data: APIChannel); }