import { SentenceFormat } from '../translator/sentence-format';
export declare class SentenceFormatter {
    static toHtml(sentence: string, format: SentenceFormat): string;
    static fromHtml(sentence: string, format: SentenceFormat): string;
    static toPlain(sentence: string, format: SentenceFormat): string;
}
