import { HTMLChakraProps } from '@chakra-ui/system'; export interface SearchInputProps extends HTMLChakraProps<'input'> { wrapperStyle?: HTMLChakraProps<'div'>; className?: string; placeholderIsMinWidth?: boolean; extraWidth?: string | number; isDisabled?: boolean; } export declare const SearchInput: import("@chakra-ui/system").ComponentWithAs<"input", SearchInputProps>;