export default class WebHook { url: null | string; content: null | string; title: null | string; description: null | string; color: null | number; author: { name: null | string; url: null | string; icon_url: null | string; }; footer: { text: null | string; icon_url: null | string; }; timestamp: null | string; webhook_url: string; constructor(webhook_url: string); send(): Promise; setAuthor(name: string, icon_url?: string | null, url?: string | null): WebHook; setUrl(url: string): WebHook; setColor(color: string): WebHook; setTitle(text: string): WebHook; setContent(text: string): WebHook; setDescription(text: string): WebHook; setFooter(text: string, icon_url?: string | null): WebHook; setTimestamp(timestamp?: number): WebHook; }