/** * Process-local lazy singleton on `globalThis`, keyed through the global * symbol registry (`Symbol.for`) so independently created hook instances * in the same JS process share one store per key. */ export declare function getGlobalStore(key: string, init: () => T): T;