/** ℹ️ This enum is non-exhaustive. */ export declare const AuthType: { readonly Password: "password"; readonly Oauth: "oauth"; readonly Email: "email"; }; export type AuthType = (typeof AuthType)[keyof typeof AuthType];