/** * @originals/auth - Turnkey-based authentication for the Originals Protocol * * This package provides authentication utilities for both server and client applications. * * Server-side: * ```typescript * import { createAuthMiddleware, initiateEmailAuth, verifyEmailAuth } from '@originals/auth/server'; * ``` * * Client-side (pure functions, no React): * ```typescript * import { initializeTurnkeyClient, initOtp, completeOtp, fetchWallets } from '@originals/auth/client'; * ``` * * Types: * ```typescript * import type { AuthUser, TokenPayload, TurnkeyWallet } from '@originals/auth/types'; * ``` */ export * from './types.js'; export { turnkeySignBytes, type TurnkeySignBytesOptions } from './turnkey-sign-bytes.js'; //# sourceMappingURL=index.d.ts.map