import { type ChannelType } from "discord-api-types/v10"; import { BaseChannel } from "../abstracts/BaseChannel.js"; import type { IfPartial, MessagePayload } from "../types/index.js"; import { Message } from "./Message.js"; /** * Represents a DM between two users. */ export declare class DmChannel extends BaseChannel { /** * The name of the channel. This is always null for DM channels. */ get name(): IfPartial; /** * Send a message to the channel */ send(message: MessagePayload): Promise>; /** * Trigger a typing indicator in the channel (this will expire after 10 seconds) */ triggerTyping(): Promise; } //# sourceMappingURL=DmChannel.d.ts.map