import React, { HTMLAttributes } from 'react';
import { IInputProps } from '../Input';
declare const TextInput: ({ backgroundColor, ...props }: IInputProps & {
backgroundColor?: string | undefined;
} & React.HTMLAttributes) => JSX.Element;
export default TextInput;