import React, { ReactNode, ChangeEvent } from 'react'; export interface SearchProps { className?: string; prefix?: string; icon?: ReactNode; onChange?: (e: ChangeEvent) => void; style?: React.CSSProperties; inputStyle?: React.CSSProperties; shape?: 'round' | 'square'; placeholder?: string; } export default function Search(props: SearchProps): import("react/jsx-runtime").JSX.Element; export { Search };