/**
 * An option that can be put into a chooser
 * @author Gabe Abrams
 */
type ChooserOption = {
  description: string,
  tag?: string,
  index?: number,
};

export default ChooserOption;
