import { Interaction } from "./Interaction"; import { APIApplicationCommandInteraction, APIApplicationCommandInteractionData } from "discord-api-types/v10"; import Client from "../Client"; import { ApplicationCommandInteractionDataOption } from "./ApplicationCommandInteractionDataOption"; import { ResolvedData } from "./ResolvedData"; export declare class ApplicationCommandInteraction extends Interaction { data: ApplicationCommandInteractionData; commandName: string; constructor(raw: APIApplicationCommandInteraction, client: Client); } export declare class ApplicationCommandInteractionData { id: string; name: string; type: number; resolved: ResolvedData | null; options: ApplicationCommandInteractionDataOption[] | null; guildId: string | null; targetId: string | null; constructor(raw: APIApplicationCommandInteractionData); } //# sourceMappingURL=ApplicationCommandInteraction.d.ts.map