/**
 * Only accept a specific set of values.
 */
export type EnumValidator = {
  /** Set of allowed values */
  values: string[];
};
