export type TScrollingMode = 'automatic' | 'manual'

export type TScrollingDirectionVertically = 'up' | 'down'
export type TScrollingDirectionHorizontally = 'left' | 'right'

export type TSupportedKeyboardKeys =
	| 'ArrowUp'
	| 'ArrowDown'
	| 'ArrowRight'
	| 'ArrowLeft'
	| 'PageUp'
	| 'PageDown'
	| 'End'
	| 'Home'
	| 'Tab'
	| ' '
