import { HTMLAttributes } from 'react';
import { JSX as JSX_2 } from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { RefObject } from 'react';

declare type Lang = "ta" | "system";

declare type Props = {
    children: ReactNode;
    inputRef: RefObject<HTMLInputElement | HTMLTextAreaElement>;
    onChange: (val: string) => void;
    kbd: boolean;
    lang: Lang;
    otherProps: Partial<HTMLAttributes<HTMLDivElement>>;
};

export declare function TaInput({ children, inputRef, onChange, kbd, lang, ...otherProps }: Props): JSX_2.Element;

export { }
