import { Store } from './store.js'; /** * Given an EventTarget, listen for events that request a store and provide * a configured store to the originating event dispatcher. */ export declare const provide: (scope: T, store: Store) => void;