/// import { StandardTextFieldProps } from "@mui/material"; import "react-datepicker/dist/react-datepicker.css"; export interface SearchFieldWithFiltersInterface extends StandardTextFieldProps { placeholder?: string; height?: number; width?: number; type?: string; categoryOptions?: { label: string; value: string; }[]; typeOptions?: { label: string; value: string; }[]; onDateSelect?: (date: any) => void; onCategorySelect?: (value: string) => void; onTypeSelect?: (value: string) => void; selectedType?: string; selectedCategory?: string; selectedDate?: any; } declare const SearchFieldWithFilters: ({ placeholder, height, type, categoryOptions, typeOptions, onDateSelect, onCategorySelect, onTypeSelect, selectedType, selectedCategory, selectedDate, ...props }: SearchFieldWithFiltersInterface) => JSX.Element; export default SearchFieldWithFilters;