type Options = { escCB?: () => void; leftCB?: () => void; rightCB?: () => void; }; export default function useKey({ escCB, leftCB, rightCB }: Options): { onRef: (node: HTMLDivElement) => void; }; export {};