import { APIAllowedMentions, APIEmbed, APIMessageComponent, AllowedMentionsTypes } from 'discord-api-types/v10'; export interface RawReplyOptions { content?: string; embeds?: APIEmbed[]; allowedMentions?: RawAllowedMentions; ephemeral?: boolean; components?: APIMessageComponent[]; tts?: boolean; } export interface RawAllowedMentions { parse?: AllowedMentionsTypes[]; roles?: string[]; users?: string[]; repliedUser?: boolean; } export declare class AllowedMentions { parse: AllowedMentionsTypes[]; roles: string[]; users: string[]; replied_user: boolean; constructor(data: RawAllowedMentions); } export declare class InteractionReplyOptions { content?: string; embeds?: APIEmbed[]; allowed_mentions?: APIAllowedMentions; components?: APIMessageComponent[]; tts?: boolean; constructor(data: RawReplyOptions); }