@chief-editor/ui
Version:
UI Component for chief editor
12 lines (11 loc) • 414 B
TypeScript
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;