export type SelectInterface = 'action-sheet' | 'popover' | 'alert'; export type SelectCompareFn = (currentValue: any, compareValue: any) => boolean; export interface SelectChangeEventDetail { value: T; } export interface SelectCustomEvent extends CustomEvent { detail: SelectChangeEventDetail; target: HTMLIonSelectElement; }