interface HoverSearchProps { searchText: string; inputContainerStyles?: React.CSSProperties; placeholder?: string; onSearchTextChanged: (searchText: string) => void; } export default function HoverSearch({ placeholder, searchText, inputContainerStyles, onSearchTextChanged, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};