My problem has been resolved with this:
interaction.deferReply();
interaction.deleteReply();
interaction.channel.send("dummy message");
I really don't understand what you meant by that but this might be what you were looking for
You need to reply then delete it
interaction.reply({ content: 'dummy message', fetchReply: true })
.then((message) => message.delete())
.catch(console.error);