/// import PropTypes from 'prop-types'; import { InputProps } from '../../features/core'; import { TextFieldProps } from '@mui/material/TextField'; export declare type TextInputProps = InputProps & Omit; /** * An Input component for a string * * @example * * * You can customize the `type` props (which defaults to "text"). * Note that, due to a React bug, you should use `` instead of using type="number". * @example * * * * The object passed as `options` props is passed to the component */ declare const TextInput: { (props: TextInputProps): JSX.Element; propTypes: { className: PropTypes.Requireable; label: PropTypes.Requireable; options: PropTypes.Requireable; resource: PropTypes.Requireable; source: PropTypes.Requireable; }; defaultProps: { options: {}; }; }; export default TextInput;