import { Editor } from 'slate'; export type UseKeyboardShortcutsProps = { editor: Editor; }; export declare const useKeyboardShortcuts: ({ editor }: UseKeyboardShortcutsProps) => { handleKeyDown: (event: React.KeyboardEvent) => void; };