import * as React from 'react'; import { Input } from '../../components/input/Input'; export type SearchInputProps = React.ComponentProps & { size?: 'sm' | 'md' | 'lg'; className?: string; value?: string; defaultValue?: string; onValueChange?: (newValue: string) => void; clearText?: string; onChange?: (e: React.ChangeEvent) => void; }; export declare const SearchInput: React.ForwardRefExoticComponent & React.RefAttributes>;