import { BaseInputProps } from '../../types/input'; import { ButtonHTMLAttributes, ChangeEvent } from 'react'; export type InputSearchResetButton = Pick, 'aria-label' | 'onClick'>; export interface InputSearchProps extends Omit { /** Optional props for the reset button */ feResetButton?: InputSearchResetButton; /** Callback that will fire anytime the value of the input changes. */ onChange?: (event: ChangeEvent, value: string) => void; } declare const InputSearch: import("react").ForwardRefExoticComponent>; export default InputSearch;