import type { Handlers, Keybind, Keyboard } from "@waradu/keyboard"; import type { Ref } from "vue"; export declare const useKeybind: Keyboard["bind"]; export declare function useKeybindLayer(...args: Parameters): ReturnType; export declare function useKeyboardInspector(): { handlers: Ref; unsubscribe: () => unknown; }; export declare function useKeybindRecorder(cb: (keybind: Keybind) => void): any;