import { FastifyReply } from "fastify"; import { Client } from ".."; import { InteractionData } from "./BaseInteraction"; import { BaseComponentInteraction } from "./BaseComponentInteraction"; export declare class SelectMenuInteraction extends BaseComponentInteraction { constructor(data: InteractionData, res: FastifyReply, client: Client); get values(): any; }