import { CacheType, Interaction } from "discord.js"; import { CommandUserInput } from "../../models/Command"; import { CommandReplyOptions } from "../../models/CommandReply"; export declare class CommandSimpleReplyService { private commandReplyService; private isDeferred; private isReplied; constructor(maxTextMessageLength?: number); deferReply(input: Interaction, ephemeral?: boolean): Promise; deferReplyHybrid(input: CommandUserInput, ephemeral?: boolean): Promise; reply(input: Interaction, options: CommandReplyOptions): Promise; replyHybrid(input: CommandUserInput, options: CommandReplyOptions): Promise; }