import React from 'react'; import { TextInputProps } from '../types'; export interface InputControlProps extends Omit, Pick, 'autoComplete'> { } export declare function InputControl(props: InputControlProps): JSX.Element;