/// import { StandardTextFieldProps } from "@mui/material"; export interface SearchFieldInterface extends StandardTextFieldProps { placeholder?: string; } declare const SearchFieldWithButton: ({ placeholder, ...props }: SearchFieldInterface) => JSX.Element; export default SearchFieldWithButton;