import { InputHTMLAttributes, default as React } from 'react';
export type InputTextProps = {
id: string;
isErrored: boolean;
className?: string;
hidePlaceholder?: boolean;
onChange?: React.ChangeEventHandler;
onKeyDown?: React.ChangeEventHandler;
ref?: never;
refId?: string;
required?: boolean;
ariaDescribedBy?: string;
ariaLabel?: string;
type?: "text" | "number" | "date" | "month" | "email" | "password" | "search" | "url" | "tel";
} & InputHTMLAttributes;
export declare const InputTextComponent: ({ id, isErrored, className, hidePlaceholder, refId, required, type, ariaDescribedBy, ariaLabel, ...props }: InputTextProps) => import("react/jsx-runtime").JSX.Element;