1 | import type { PropsWithChildren } from 'react';
|
2 | import type { Atom, Scope } from './atom';
|
3 | import type { ScopeContainer } from './contexts';
|
4 | import { createStoreForExport } from './store';
|
5 | export declare const Provider: ({ children, initialValues, scope, unstable_createStore, unstable_enableVersionedWrite, }: PropsWithChildren<{
|
6 | initialValues?: Iterable<readonly [Atom<unknown>, unknown]>;
|
7 | scope?: Scope;
|
8 | |
9 |
|
10 |
|
11 | unstable_createStore?: typeof createStoreForExport;
|
12 | |
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | unstable_enableVersionedWrite?: boolean;
|
20 | }>) => import("react").FunctionComponentElement<import("react").ProviderProps<ScopeContainer>>;
|