/** * A collection of common sign-in resolvers that work with any auth provider. * * @public */ export declare namespace commonSignInResolvers { /** * A common sign-in resolver that looks up the user using their email address * as email of the entity. */ const emailMatchingUserEntityProfileEmail: import("./createSignInResolverFactory").SignInResolverFactory; /** * A common sign-in resolver that looks up the user using the local part of * their email address as the entity name. */ const emailLocalPartMatchingUserEntityName: import("./createSignInResolverFactory").SignInResolverFactory; }