import { IsEmailOptions as vtsIsEmailOptions } from "@fireflysemantics/validatorts"; /** * Checks if the string is an email. * If given value is not a string, then it returns false. * * @param value The value being checked. * @param options The options configuration {@link IsEmailOptions} * @return True if the string is an email, false otherwise. */ export declare function isEmail(value: string, options?: vtsIsEmailOptions): boolean; /** * Reexport IsEmailOptions */ export declare type IsEmailOptions = vtsIsEmailOptions;