import React from 'react'; interface InputSearchProps { placeholder?: string; defaultValue?: string; onChange?: (newValue: string) => void; debounceWait?: number; } export declare const InputSearch: (props: InputSearchProps & Omit, "onChange">) => React.JSX.Element; export {};