import React from 'react'; import './Search.scss'; export interface SearchProps { /** * Placeholder for the input field */ placeholder?: string; /** * Callback function to be called when the search button is clicked or enter key is pressed */ onSearch: (query: string) => void; /** * Additional styles for the button */ className?: string; /** * Pass true for transparentBackground button */ style?: React.CSSProperties; /** * If true, the search input field will be disabled */ disabled?: boolean; height: string; width: string; value: string; onChange: (event: React.ChangeEvent) => void; } declare const Search: ({ placeholder, onSearch, className, style, disabled, height, width, value, onChange, }: SearchProps) => import("react/jsx-runtime").JSX.Element; export default Search;