import type * as Vital from "../../../../index.js"; /** * @example * { * vitalLinkToken: "x-vital-link-token", * email: "email", * provider: "oura", * authType: "password" * } */ export interface EmailAuthLink { vitalLinkToken?: string; email: string; provider: Vital.Providers; authType: Vital.AuthType; region?: Vital.Region; }