import { APIAttachment, APIEmbed, APIMessageTopLevelComponent, TopLevelComponentData, ActionRowData, Attachment, AttachmentBuilder, AttachmentPayload, BufferResolvable, JSONEncodable, MessageMentionOptions, MessageActionRowComponentData, MessageActionRowComponentBuilder } from "discord.js"; import { Stream } from "stream"; export declare class CommandReplyOptions { embeds?: APIEmbed[]; content?: string; files?: (BufferResolvable | Stream | JSONEncodable | Attachment | AttachmentBuilder | AttachmentPayload)[]; interactionComponents?: readonly (JSONEncodable | TopLevelComponentData | ActionRowData | APIMessageTopLevelComponent)[]; mentions?: MessageMentionOptions; ephemeral?: boolean; } export declare class CommandReplyStateOptions { wasDeferred?: boolean; isFollowUp?: boolean; }