import { Artifact } from "../artifacts/artifact-types"; import { ProjectId, UserId } from "../types"; export declare type TestMailAddress = string; export declare class TestMailAccount { emailAddress: TestMailAddress; projectId: ProjectId; creator: UserId; optTestRunId?: string | undefined; constructor(emailAddress: TestMailAddress, projectId: ProjectId, creator: UserId, optTestRunId?: string | undefined); } export declare class TestMail { from: string; to: string[]; emailContent: any; constructor(from: string, to: string[], emailContent: any); static fromArtifact(artifact: Artifact): TestMail; }