import CommandInteraction from "./CommandInteraction"; import type { RawApplicationCommandInteraction } from "../types/interactions"; import type Client from "../Client"; import InteractionOptionsWrapper from "../util/InteractionOptionsWrapper"; import type { JSONChatInputCommandInteraction } from "../types/json"; export default class ChatInputCommandInteraction extends CommandInteraction { options: InteractionOptionsWrapper; constructor(data: RawApplicationCommandInteraction, client: Client); toJSON(): JSONChatInputCommandInteraction; }