import { getOrCreateClientUserId, persistCanonicalUserId, getBootstrapCandidateUserId } from './session/identity.js'; import { getSubscriptionManagementUserId, getSubscriptionManagementStripeCustomerId } from './session/subscriptions/identity.js'; import { bootstrapSession } from './session/bootstrap/bootstrapSession.js'; import { updateUser } from './session/users/updateUser.js'; import { syncUrlUserAttributes } from './session/users/syncUrlUserAttributes.js'; import { captureEmail } from './session/emailCapture/captureEmail.js'; import { uploadTempPhoto } from './session/uploads/uploadTempPhoto.js'; import { pingUserContext } from './session/ping/pingUserContext.js'; import { getManageSubscriptions } from './session/subscriptions/getManageSubscriptions.js'; import { updateSubscription } from './session/subscriptions/updateSubscription.js'; export type { AppUser } from './session/users/types.js'; export type { EmailCaptureResult } from './session/emailCapture/types.js'; export type { TempPhotoUploadResult } from './session/uploads/types.js'; export type { ManageSubscriptionsResponse } from './session/subscriptions/types.js'; export declare const apiService: { getOrCreateClientUserId: typeof getOrCreateClientUserId; persistCanonicalUserId: typeof persistCanonicalUserId; getSubscriptionManagementUserId: typeof getSubscriptionManagementUserId; getSubscriptionManagementStripeCustomerId: typeof getSubscriptionManagementStripeCustomerId; getBootstrapCandidateUserId: typeof getBootstrapCandidateUserId; bootstrapSession: typeof bootstrapSession; updateUser: typeof updateUser; captureEmail: typeof captureEmail; syncUrlUserAttributes: typeof syncUrlUserAttributes; pingUserContext: typeof pingUserContext; uploadTempPhoto: typeof uploadTempPhoto; getManageSubscriptions: typeof getManageSubscriptions; updateSubscription: typeof updateSubscription; };