import type { AuthOAuthProfileInput, AuthOAuthProvider } from "../types.js"; export declare const getIdentityUserId: (provider: AuthOAuthProvider, providerUserId: string) => Promise; export declare const getEmailUserId: (email: string) => Promise; export declare const createOwnerFromOAuth: (profile: AuthOAuthProfileInput) => Promise; export declare const updateUserFromOAuth: (userId: string, profile: AuthOAuthProfileInput) => Promise; export declare const linkIdentity: (userId: string, profile: AuthOAuthProfileInput) => Promise; export declare const getProviderUserId: (provider: AuthOAuthProvider) => Promise;