import { type RefObject } from 'react'; export type KeypressHandler = [KeyboardEvent['key'], (e: KeyboardEvent) => void]; export declare const useVideoKeypressHandlers: (videoWrapperRef: RefObject) => void;