/** * @file index.tsx * * @fileoverview Helper hook to match characters in a list of items. * Taken a list and a word it will find elements * of the list that match the word. Also can take a pattern for how to match the word to the items. */ export declare const useMatch: (data: any, term: any, pattern: any) => any;