import React from 'react';
import './TextInput.scss';
interface TextInputProps {
    disabled?: boolean;
    handleViewIcon?: (e: React.MouseEvent<HTMLSpanElement>) => void;
    htmlFor: string;
    information?: boolean | string;
    inputName?: string;
    label: string;
    notificationState?: null | 'success' | 'error' | 'warning';
    notificationMessage?: null | string;
    onInputChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
    placeholder: string;
    type?: string;
    withIcon?: boolean | string;
    value?: string;
}
export declare const TextInput: React.FC<TextInputProps>;
export {};
