/// import ErrProtecter from "./errProtect"; import isEmpty from "./isEmptyData"; import autoHypen, { autoComma, numberStr, toNumber } from "./autoFormat"; import { JDMonthTextChanger, JDWeekChanger, applyDaysToArr, arrToApplyDays, dayarrEnToBooleanArr } from "./dayOfweeks"; import { isYYYYMMDD } from "./inputValidations"; import { getCookie, setCookie } from "./cookies"; import { textAlignClass, colorClass } from "./autoClasses"; import { showError } from "./errorMessage"; import onCompletedMessage from "./onCompletedMessage"; import queryDataFormater from "./queryFormater"; import setMidNight from "./setMidNight"; import removeNullOfObject from "./removeNullOfObject"; import s4 from "./keyGen"; import randomIntFromInterval from "./randomNumber"; import muResult from "./mutationResultSafty"; import instanceOfA from "./interfaceMatch"; import JDscrollTo from "./scrollTo"; import targetBlink from "./targetBlink"; import mergeObject from "./mergeObject"; import jsonString from "./jsonString"; import getGenderIcon from "./getGenderIcon"; declare const JDutils: { ErrProtecter: typeof ErrProtecter; targetBlink: typeof targetBlink; isEmpty: (data: any) => data is ""; isEmail: (string: string) => boolean | ""; isPhone: (string: string) => boolean | ""; isUrl: (string: string) => boolean | ""; isName: (string: string) => boolean | ""; isMaxOver: (string: string, max: number) => boolean | ""; isPassword: (string: string) => boolean | ""; textAlignClass: (boxName: string, align?: import("../types/enum").TextAlign) => any; colorClass: (boxName: string, color?: import("../types/enum").JDColor) => any; getCookie: typeof getCookie; JDscrollTo: typeof JDscrollTo; setCookie: typeof setCookie; randomIntFromInterval: typeof randomIntFromInterval; JDMonthTextChanger: (Month: import("react").ReactText) => string; autoHypen: (str?: string) => string; onCompletedMessage: (result: { [data: string]: any; error: string; ok: boolean; }, resultOK: string, resultFale: string) => void; queryDataFormater: typeof queryDataFormater; setMidNight: (time: number) => number; applyDaysToArr: (applyDaysBinary: number) => import("./dayOfweeks").DayOfWeekEnum[]; arrToApplyDays: (arr: (number | boolean)[]) => number; autoComma: (str?: import("react").ReactText) => string; dayarrEnToBooleanArr: (dayArr: string[]) => boolean[]; isLast: (index: number, arr: any[], trueReturn?: any, falsereturn?: any) => any; isYYYYMMDD: (string: string) => boolean | ""; getGenderIcon: (roomGneder: import("../types/enum").RoomGender) => import("../atoms/icons/Icons").IIcons; numberStr: (str?: string) => string; toNumber: (value?: import("react").ReactText) => number; isNumberMinMax: (string: string, min: number, max: number) => boolean | ""; muResult: typeof muResult; removeNullOfObject: (obj: any) => void; jsonString: (value: any) => string; instanceOfA: typeof instanceOfA; mergeObject: typeof mergeObject; s4: () => string; }; export default JDutils; export { onCompletedMessage, JDMonthTextChanger, instanceOfA, jsonString, JDWeekChanger, isEmpty, textAlignClass, colorClass, ErrProtecter, removeNullOfObject, autoHypen, dayarrEnToBooleanArr, getGenderIcon, showError, queryDataFormater, mergeObject, setMidNight, JDscrollTo, applyDaysToArr, randomIntFromInterval, arrToApplyDays, targetBlink, autoComma, numberStr, muResult, toNumber, isYYYYMMDD, s4 };