import { ApiPropertyOptions } from '@nestjs/swagger'; declare const Email_base: (abstract new (value: any) => { readonly "__#2@#_nominalType": "email"; readonly value: any; toString(): any; toJSON(): any; isIdentical(value: any): boolean; }) & { readonly apiPropertyOptions: ApiPropertyOptions; getOrmType(): import("@mikro-orm/core").Constructor>; getValidator(): import("@mikro-orm/core").Constructor; getResourceDecorators(...args: any[]): (target: object | TFunction, propertyKey?: string | symbol, descriptor?: TypedPropertyDescriptor) => void; getPipe(): import("@nestjs/common").PipeTransform; createInstance(this: new (...args: any[]) => T, ...args: any[]): T; }; /** * Represents an email address. * * @class * @extends NType */ export declare class Email extends Email_base { _nominalType: string; static apiPropertyOptions: ApiPropertyOptions; } export {};