import { type TFeature } from 'feature-core'; /** * Exposes a state on `globalThis` under `key` for browser console debugging. * After installing, `globalThis[key]` holds the state object so you can call * `get()`, `set()`, and inspect `_v` directly from the browser console. */ export declare function globalBindFeature(key: string): TGlobalBindFeature; export type TGlobalBindFeature = TFeature<'global-bind', object>;