/** * @param keys - keys to search for from available data * @returns {callback} - dispatches action to update search results after matching strings */ export declare const useStringMatching: (keys: string[]) => (input: string, data: any[]) => void;