import { IdentificationLink } from './IdentificationLink';
import type { EmailAddressJSON } from './JSON';
import { Verification } from './Verification';
export declare class EmailAddress {
    readonly id: string;
    readonly emailAddress: string;
    readonly verification: Verification | null;
    readonly linkedTo: IdentificationLink[];
    constructor(id: string, emailAddress: string, verification: Verification | null, linkedTo: IdentificationLink[]);
    static fromJSON(data: EmailAddressJSON): EmailAddress;
}
//# sourceMappingURL=EmailAddress.d.ts.map