import { d as ActionTree, A as ActionId, j as ActionImpl } from '../types-KA65ZTMd.mjs'; import { IFuseOptions } from 'fuse.js'; import 'react'; declare const NO_GROUP: { name: string; priority: number; }; /** * returns deep matches only when a search query is present */ declare function useMatches(search: string, actions: ActionTree, rootActionId: ActionId | null, options?: IFuseOptions): { results: (string | ActionImpl)[]; rootActionId: string; }; /** * @deprecated use useMatches */ declare const useDeepMatches: typeof useMatches; export { NO_GROUP, useDeepMatches, useMatches };