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