declare const isUrl: (string: string) => boolean | ""; declare const isPhone: (string: string) => boolean | ""; declare const isHaveScharacter: (string: string) => boolean; declare const isLengthIn: (string: string, max: number, min: number) => boolean; declare const isName: (string: string) => boolean | ""; declare const isYYYYMMDD: (string: string) => boolean | ""; declare const isEmail: (string: string) => boolean | ""; declare const isHaveNumber: (string: string) => boolean; declare const isMaxOver: (string: string, max: number) => boolean | ""; declare const isPassword: (string: string) => boolean | ""; declare const isNumberMinMax: (string: string, min: number, max: number) => boolean | ""; export { isEmail, isYYYYMMDD, isPhone, isName, isUrl, isMaxOver, isPassword, isNumberMinMax, isLengthIn, isHaveScharacter, isHaveNumber };