import { DualChar } from './public-api';
export interface IKerning {
    set: (cur: DualChar, prev: DualChar) => boolean;
}
export declare class Kerning implements IKerning {
    static instance: Kerning;
    private constructor();
    set(cur: DualChar, prev: DualChar): boolean;
}
