/// import { StandardTextFieldProps } from "@mui/material"; import { OptionInterface } from "../CommonInterfaces"; interface selectInputInterface extends OptionInterface { hasHelperText?: string; } export interface SelectTextInputInterface extends StandardTextFieldProps { value?: string; placeholder?: string; icon?: string; id?: string; isWidthLess?: boolean; minWidth?: number | string; options: selectInputInterface[]; label?: string; } declare const Select: ({ value, placeholder, icon, isWidthLess, id, options, minWidth, label, ...props }: SelectTextInputInterface) => JSX.Element; export default Select;