/// import { StandardTextFieldProps } from "@mui/material"; export interface SearchFieldInterface extends StandardTextFieldProps { placeholder?: string; searchIconPosition?: "end" | "start"; isLight?: boolean; height?: number; fontSize?: number; } declare const SearchField: ({ placeholder, searchIconPosition, isLight, height, fontSize, ...props }: SearchFieldInterface) => JSX.Element; export default SearchField;