interface Props { onEscape?: () => void; onArrowRight?: () => void; onArrowLeft?: () => void; } /** * A hook the applies the respective callbacks in response to keydown events. */ declare const useKeydownHandler: ({ onEscape, onArrowRight, onArrowLeft }: Props) => void; export default useKeydownHandler; //# sourceMappingURL=use-keydown-handler.d.ts.map