import { TextFormatContext } from './public-api';
export interface IHyphenator {
    hyphenate: (context: TextFormatContext) => number;
}
export declare class Hyphenator implements IHyphenator {
    static instance: Hyphenator;
    private constructor();
    hyphenate(context: TextFormatContext): number;
    private getHyphenateCount;
}
