import Embed from "./Embed"; import ActionRow from "./ActionRow"; import { Attachment } from "./Attachment"; import { AllowedMentions } from "./AllowedMentions"; import { LocalizationDictionary } from "./LocalizationDictionary"; export declare class AutocompleteReplyData { choices: AutocompleteChoice[]; } export declare class AutocompleteChoice { name: string; name_localizations?: LocalizationDictionary; value: string; } export declare class InteractionReplyData { tts?: boolean; content?: string; embeds?: Embed[]; allowedMentions?: AllowedMentions; ephemeral?: boolean; suppressEmbeds?: boolean; components?: ActionRow[]; attachments?: Attachment[]; } export declare class InteractionDeferData { ephemeral?: boolean; } //# sourceMappingURL=InteractionReplyDataType.d.ts.map