import React from 'react';

interface InputFieldProps {
    inputProps?: React.InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>;
    containerProps?: React.HTMLAttributes<HTMLDivElement>;
    buttonProps?: React.ButtonHTMLAttributes<HTMLButtonElement>;
    value?: string;
    onChange?: (newValue: string) => void;
    inputType?: "input" | "textarea";
    enableEnglishLanguageToggle?: boolean;
}
declare const PreetiToUnicodeInput: React.FC<InputFieldProps>;

export { PreetiToUnicodeInput as default };
