/** * Check whether the input string contains any Latin letters * @param str * @returns returns a boolean value indicating whether the string contains any Latin letters */ export declare const isLatin: (str: string) => boolean;