import * as react_jsx_runtime from 'react/jsx-runtime'; import { SwingSDK } from '@swing.xyz/sdk'; /** * Provides a Swing SDK instance to the app. */ declare const SwingSdkProvider: ({ children, projectId, debug, analytics, environment, }: { projectId?: string; environment?: "production" | "testnet"; debug?: boolean; analytics?: boolean; children: React.ReactNode; }) => react_jsx_runtime.JSX.Element; /** * Gets the Swing SDK instance. Must be used within a `SwingSdkProvider`. */ declare const useSwingSdk: () => SwingSDK; declare const useSwing: () => readonly [SwingSDK, { readonly isReady: boolean; }]; export { SwingSdkProvider, useSwing, useSwingSdk };