import * as React from 'react'; // type property is omitted because here in order to reduce its range to only `text` interface TextFieldProps extends Omit, 'type'> {} export const TextField = React.forwardRef( ({ className, placeholder = '', autoComplete, value, ...inputProps }, ref) => { return ( ); } ); TextField.displayName = 'TextField';