export declare const compare: (x: string, y: string) => number; /** * This a set of letters that look like each other. * There can be a maximum of 30 groups. * It is possible for a letter to appear in more than 1 group, but not encouraged. */ export declare const visualLetterGroups: string[]; /** * This is a map of letters to groups mask values. * If two letters are part of the same group then `visualLetterMaskMap[a] & visualLetterMaskMap[b] !== 0` */ export declare const visualLetterMaskMap: Record; //# sourceMappingURL=orthography.d.ts.map