export type ITrie = [0 | 1, {
    [label: string]: ITrie;
}];
export declare const exceptions: ITrie;
export declare const rules: ITrie;
