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