import { SearchInputOwnProps } from './types'; export declare function getSearchInputProps
({ className, error, warning, icon, width, label, onChange, onBlur, onFocus, ...rest }: P): Omit
& { onChange: (event: React.ChangeEvent) => void | undefined; onBlur: (event: React.FocusEvent) => void | undefined; onFocus: (event: React.FocusEvent) => void | undefined; 'aria-label': string; className: string; type: string; };