export type ListPlacement = 'bottom' | 'top' | 'auto'; export type TimepickerSpecialKey = 'bottom' | 'top' | 'auto' | ':' | ' ' | 'Tab' | 'tab' | 'stop' | 'ArrowDown' | 'ArrowUp' | 'continue'; export interface ListPosition { left?: number; top?: number; width?: number; }