/**
 * Return the number of unicode code points in a string
 *
 * @param input the unicode string
 * @returns the number of code points
 */
export declare function unicodeLength(input: string): number;
export default unicodeLength;
