import { ButtonBuilder } from "discord.js"; import { SleetModule } from "sleetcord"; //#region src/modules/autoreply.d.ts interface AutoreplyModuleOptions { /** * Buttons to add to the autoreply message, alongside the "Invite Bot" button (Max 4) */ buttons?: ButtonBuilder[]; /** * The content to send in the autoreply message * @default `Use slash commands to interact with me, type \`/\` into your chat bar to see them.\nDon't see them? Try reinviting me!` */ content?: string; } declare function makeAutoreplyModule({ buttons, content }?: AutoreplyModuleOptions): SleetModule; //#endregion export { makeAutoreplyModule }; //# sourceMappingURL=autoreply.d.mts.map