import { TranslateError } from '../services/translate';
export declare function useAutoTranslate(text: string): {
    translatedText: string;
    isLoading: boolean;
    error: TranslateError | null;
};
