import './TextInputFormatted.scss';
import { DetailedHTMLProps, InputHTMLAttributes, ReactElement } from 'react';
export interface LuiTextInputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
    value: string;
    helpText?: string;
    error?: ReactElement | string | boolean | null;
    formatted?: string;
    allowTabToSave?: boolean;
}
export declare const TextInputFormatted: (props: LuiTextInputProps) => ReactElement;
