import { TranslationFile } from './translationFileModels';
import { Options } from '../options';
export declare function fromXlf2(xlf2: string, options?: Pick<Options, 'sortNestedTagAttributes'>): TranslationFile;
export declare function fromXlf1(xlf1: string, options?: Pick<Options, 'sortNestedTagAttributes'>): TranslationFile;
export declare function toXlf2(translationFile: TranslationFile, options: Pick<Options, 'prettyNestedTags'>): string;
export declare function toXlf1(translationFile: TranslationFile, options: Pick<Options, 'prettyNestedTags'>): string;
