import React from 'react'; import { InputGroupProps } from './InputGroup'; export interface StringInputGroupProps extends Omit, 'onChange' | 'type' | 'value'> { type?: 'color' | 'email' | 'search' | 'tel' | 'text' | 'url' | 'password' | 'textarea'; } /** Standard string input group. */ declare const StringInputGroupWithRef: React.ComponentType; export default StringInputGroupWithRef;