import { Client } from ".."; import { Base } from "./Base"; export declare class AutoCompleteInteraction extends Base { constructor(data: AutoCompleteInteractionData, client: Client); get id(): string; get commandName(): string; get options(): InteractionOption[]; get focusedField(): InteractionOption; reply(data: AutoCompleteChoice[]): Promise; } export interface AutoCompleteInteractionData { type: 4; id: string; token: string; data: { id: string; name: string; type: number; version: string; options: { type: number; name: string; value: string; focused: boolean; }[]; }; } type AutoCompleteChoice = { name: string; value: string; }; export {};