import { Keybind, Keybinds } from './types.mjs';

declare const useKeybindsList: <Slug extends string>() => {
    getKeybind: (slug: Slug) => Keybind;
    keybinds: Keybinds<string>;
};

export { useKeybindsList as default };
