import { RefObject } from 'react';
declare const useInputPlaceholderAndDir: ({ lang, textInputRef, }: {
    textInputRef: RefObject<HTMLInputElement | HTMLTextAreaElement | null>;
    lang: "en" | "ar";
}) => void;
export default useInputPlaceholderAndDir;
