export type SearchInputProps = { onChange: (value: string) => void; initialValue?: string; }; export declare const SearchInput: (props: SearchInputProps) => import("react/jsx-runtime").JSX.Element;