/** * Available sign-in resolvers for the Oidc auth provider. * * @public */ export declare namespace oidcSignInResolvers { /** * A oidc resolver that looks up the user using the local part of * their email address as the entity name. */ const emailLocalPartMatchingUserEntityName: import("@backstage/plugin-auth-node").SignInResolverFactory; /** * A oidc resolver that looks up the user using their email address * as email of the entity. */ const emailMatchingUserEntityProfileEmail: import("@backstage/plugin-auth-node").SignInResolverFactory; }