/** * Checks if the string contains any surrogate pairs chars. * If given value is not a string, then it returns false. * * @param value The value being checked. * @returns True if the string contains any surrogate pairs chars, false otherwise. */ export declare function isSurrogatePair(value: string): boolean;