import { a as AuthClientConfig, A as AuthClient } from '../types-Cu0do-w-.js'; export { b as AuthTransport } from '../types-Cu0do-w-.js'; import '../auth-c1d7Eji2.js'; /** * Platform-agnostic auth client factory. * * Works with any AuthTransport: * - Web: cookie-based (server sets HttpOnly cookies) * - Native: token-based (stores JWT in secure storage) * * Usage: * const auth = createAuthClient({ apiBaseUrl, transport, stackId }); * await auth.login('user@example.com', 'password'); * const headers = await auth.getHeaders(); */ declare function createAuthClient(config: AuthClientConfig): AuthClient; export { AuthClient, AuthClientConfig, createAuthClient };