import { APIModalSubmitInteraction } from 'discord-api-types/v10'; import { Interaction } from './Interaction.js'; import { FastifyReply } from 'fastify'; import { ModalComponent } from './ModalComponent.js'; import { RawReplyOptions } from '../util/InteractionReplyOptions.js'; export declare class ModalInteraction extends Interaction { _reply: FastifyReply; customId: string; components: Map; constructor(interaction: APIModalSubmitInteraction, reply: FastifyReply); reply(data: RawReplyOptions): void; deferReply(): void; }