import type { Context } from "hono"; export interface CustomerIdentityContext { userId: string; sessionId: string | null; email: string | null; relationshipPersonId: string | null; } /** Requires customer-realm identity without requiring a selected buyer account. */ export declare function requireCustomerIdentityContext(c: Context): CustomerIdentityContext;