import React from 'react';
export interface ISelectHotKeyEventHandlers {
    selectBackFill?: () => void;
    stepDown?: () => void;
    stepUp?: () => void;
}
export interface ISelectHotKeyProps {
    focusableElementRef: React.RefObject<HTMLElement> | React.MutableRefObject<HTMLElement>;
    handlers?: ISelectHotKeyEventHandlers;
}
export declare function SelectHotKey(props: ISelectHotKeyProps): JSX.Element;
