export type AutocompleteFocusedOption = Pick<CommandInteractionOption, 'name'> & { focused: true; type: ApplicationCommandOptionType.String | ApplicationCommandOptionType.Integer | ApplicationCommandOptionType.Number; value: string;};
The full autocomplete option object.