import React from 'react'; import { CHARACTER_MATCHING, DEBOUNCE, DEFAULT, STRING_MATCHING, THROTTLE } from '../../const'; export declare const inputAlgorithms: Record; export declare const matchingAlgorithms: Record; export interface Props extends React.InputHTMLAttributes { data: any[]; keysToSearch?: string[]; inputAlgorithm?: typeof DEBOUNCE | typeof THROTTLE | typeof DEFAULT; inputAlgorithmTimeout?: number; matchingAlgorithm?: typeof CHARACTER_MATCHING | typeof STRING_MATCHING; value?: string; onChange?: (e: React.ChangeEvent) => void; initialValue?: string; PrefixIcon?: React.FC; } export declare const SearchBar: React.ForwardRefExoticComponent>;