import { type AppKitContextType } from '../AppKitContext'; /** * Hook to access the AppKit context * * @remarks * This is an internal hook used by other AppKit hooks to ensure they're used within * the AppKitProvider. You typically don't need to use this hook directly - use the * higher-level hooks like `useAppKit`, `useAccount`, `useAppKitTheme`, etc. instead. * * @returns {AppKitContextType} The AppKit context containing the AppKit instance * * @throws {Error} If used outside of an AppKitProvider * @throws {Error} If the AppKit instance is not yet available in context * * @internal * * @example * ```tsx * // This is typically used internally by other hooks * function MyCustomHook() { * const context = useAppKitContext(); * // Use context.appKit... * } * ``` */ export declare const useAppKitContext: () => AppKitContextType; //# sourceMappingURL=useAppKitContext.d.ts.map