/** * Devtools integration for stores. * @internal */ declare global { interface Window { __BQUERY_DEVTOOLS__?: { stores: Map; onStoreCreated?: (id: string, store: unknown) => void; onStateChange?: (id: string, state: unknown) => void; }; } } export type DevtoolsHook = { stores: Map; onStoreCreated?: (id: string, store: unknown) => void; onStateChange?: (id: string, state: unknown) => void; }; export declare const registerDevtoolsStore: (id: string, store: unknown) => void; export declare const unregisterDevtoolsStore: (id: string) => void; export declare const notifyDevtoolsStateChange: (id: string, state: unknown) => void; //# sourceMappingURL=devtools.d.ts.map