/// import { SelectProps } from "@mui/material"; export interface SelectTextInputInterface extends SelectProps { value?: string; placeholder?: string; roundedCorners?: boolean; options: { label: string; value: string; }[]; fontSize?: number; dropdownFontSize?: number; } declare const SelectInput: ({ value, placeholder, roundedCorners, options, fontSize, dropdownFontSize, ...props }: SelectTextInputInterface) => JSX.Element; export default SelectInput;