UNPKG

224 BTypeScriptView Raw
1import React from 'react';
2import { AnyAtom, Scope } from './types';
3export declare const Provider: React.FC<{
4 initialValues?: Iterable<readonly [
5 AnyAtom,
6 unknown
7 ]>;
8 scope?: Scope;
9}>;