import { FastifyReply } from "fastify"; import { InteractionDataLike } from "./Base"; import { BaseInteraction } from "./BaseInteraction"; import { Client, Message, TextChannel } from ".."; export declare class BaseComponentInteraction extends BaseInteraction { message: Message; channel: TextChannel; constructor(data: InteractionDataLike, res: FastifyReply, client: Client); get customId(): string; }