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