/// <reference types="react" />
import type * as Common from "../../common/types";
type Event<T> = Common.Event<React.SyntheticEvent<T>> | React.KeyboardEventHandler<T>;
type HandleKeyDown = <K>(onClick?: Event<K>, action?: () => void) => React.KeyboardEventHandler<K>;
declare const handleKeyDown: HandleKeyDown;
export default handleKeyDown;
