/** ℹ️ This enum is non-exhaustive. */ export declare const SourceAuthType: { readonly Oauth: "oauth"; readonly TeamOauth: "team_oauth"; readonly Sdk: "sdk"; readonly Password: "password"; readonly Email: "email"; readonly App: "app"; readonly Empty: ""; }; export type SourceAuthType = (typeof SourceAuthType)[keyof typeof SourceAuthType];