import Client from '../Client/Client'; import Channel from './ChannelGuild'; import User from './UserClass'; export default class MessageDM { type: number; tts: boolean; pinned: boolean; nonce: string; mentions: string[]; referenced_message: string; content: string; user: User; channel: Channel; id: string; _client: Client; constructor(d: any, client: any); pin(): Promise; unPin(): Promise; edit(content: any): Promise; delete(): Promise; }