/** * Checks if the string contains any half-width 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 half-width chars, false otherwise. */ export declare function isHalfWidth(value: string): boolean;