import { MouseEventHandler } from 'react'; import { InputProps } from '@mui/material/Input/Input'; interface IrubiwinInputField extends InputProps { className?: string; defaultValue?: any; disabled?: boolean; error?: boolean; endAdornment?: JSX.Element; fullWidth?: boolean; inputProps?: object; multiline?: boolean; name?: string; placeholder?: string; readOnly?: boolean; required?: boolean; rows?: number; startAdornment?: JSX.Element; type?: string; value?: any; onClick?: MouseEventHandler; } /** * This is a Mui Input branded for Rubiwin * * Demos: * - [Text Fields](https://mui.com/components/text-fields/) * * API: * - [Input API](https://mui.com/api/input/) * - inherits [InputBase API](https://mui.com/api/input-base/) */ declare const RubiwinInputField: ({ className, id, defaultValue, disabled, endAdornment, error, fullWidth, inputProps, multiline, name, placeholder, readOnly, required, rows, startAdornment, type, value, onClick, ...props }: IrubiwinInputField) => JSX.Element; export default RubiwinInputField;