type InvisibleCharacter = {
    /** Code point. */
    codePoint: number;
    /** Human readable label for code point. */
    label: string;
    /** The hex representation of the code point, e.g. "200B" */
    hexString: string;
    /** The label plus the hex value. */
    fullLabel: string;
};
export declare const invisibleZeroWidthCharacters: {
    codePoints: InvisibleCharacter[];
    codePointMap: Map<number, InvisibleCharacter>;
    createRegex: () => RegExp;
    clearString: (inputString: string) => string;
};
declare const moduleObject: {
    invisibleZeroWidthCharacters: {
        codePoints: InvisibleCharacter[];
        codePointMap: Map<number, InvisibleCharacter>;
        createRegex: () => RegExp;
        clearString: (inputString: string) => string;
    };
};
export default moduleObject;
