import { GenderType, MyTypeGender, RateType } from './main_interface'; export default class Utils { static isPersianText(text: string): boolean; static hasPersianText(text: string): boolean; static toPersianCharsText(text: string): string; static convertGenderType(genderId: string | number, type: GenderType | string): string | number; static convertCustomGenderType(genderId: string | number, type: MyTypeGender): string | number; static convertRateType(rateId: string | number, type: RateType | string): string | number; static trimName(name: string): string; static alphabetFarsiRandom(): string; }