import { IAttachment } from './IAttachment';
import { IEmbed } from './IEmbed';
export interface IWebhook {
    username?: string;
    avatar_url?: string;
    tts?: boolean;
    content?: string;
    file?: IAttachment | string;
    embeds?: Array<IEmbed>;
}
