import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types'; import { InputProps } from '@chakra-ui/react'; type SearchInputProps = Exclude & { /** Optional label. Defaults to the localized version of "search" */ label?: string; /** Callback for when the clear button is clicked */ onReset?: () => void; }; /** Simple search input component. * * Includes a search icon, a localized label and a reset button. */ declare const SearchInput: _chakra_ui_system_dist_system_types.ComponentWithAs<"input", SearchInputProps>; export { SearchInput, SearchInputProps };