import React from 'react'; import type { Atom, Scope } from './atom'; import type { State } from './vanilla'; export declare const Provider: React.FC<{ initialValues?: Iterable, unknown]>; scope?: Scope; }>; export declare const getDebugStateAndAtoms: ({ atoms, state, }: { atoms: Atom[]; state: State; }) => (State | Atom[])[]; export declare const subscribeDebugStore: ({ listeners }: { listeners: Set<() => void>; }, callback: () => void) => () => boolean;