/**
 * Platform adapters entry point
 *
 * This module provides platform-specific utilities for different environments.
 * Use this when you need platform detection or adapter creation.
 */
export { BrowserPlatformAdapter } from "./platform/browser";
export { NodePlatformAdapter } from "./platform/node";
export type { VanaPlatformAdapter } from "./platform/interface";
export { detectPlatform, createPlatformAdapter, createPlatformAdapterFor, isPlatformSupported, getPlatformCapabilities, } from "./platform/utils";
export { createNodePlatformAdapter, createBrowserPlatformAdapter, createPlatformAdapterSafe, } from "./platform/browser-safe";
