import { AILanguageInfo } from 'devexpress-reporting/dx-webdocumentviewer';
import { FunctionComponent } from 'react';
type TranslationSettingsPropsType = {
    translationEnabled?: boolean;
    inlineTranslationEnabled?: boolean;
    languages?: AILanguageInfo[];
};
declare const TranslationSettings: FunctionComponent<TranslationSettingsPropsType>;
export default TranslationSettings;
