import { InputElementProps } from '@chakra-ui/react'; import { ChangeEvent, MutableRefObject } from 'react'; interface WebSearchInputProps extends InputElementProps { onChange: (event: ChangeEvent) => void; onReset?: () => void; onRefChange?: (ref: MutableRefObject) => void; initValue?: string; variant?: "normal" | "rounded"; placeholder?: string; error?: string; detachedError?: boolean; } declare function WebSearchInput({ onChange, onReset, onRefChange, error, detachedError, initValue, variant, ...inputProps }: WebSearchInputProps): import("react").JSX.Element; export type { WebSearchInputProps }; export { WebSearchInput };