import { InputChoice } from './input-choice'; export type EventChoiceValueType = B extends true ? string : EventChoice; export interface EventChoice extends InputChoice { element?: HTMLOptionElement | HTMLOptGroupElement; groupValue?: string; keyCode?: number; }