import { APIChannel } from "../api"; import { Client } from "../Client"; import { Channel, ChannelType } from "./Channel"; export declare class DMChannel extends Channel { get type(): ChannelType.DM; get source(): Extract; constructor(client: Client, data: APIChannel); /** Will be false if the DM is closed. */ get active(): boolean; get recipientID(): string; get recipient(): import("./User").User; fetchRecipient(): Promise; }