import React from 'react';
type AtomKey = string;
export declare const StoreProvider: ({ children }: {
    children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
export declare function useAtom<T>(key: AtomKey, defaultValue?: T): [T | undefined, (newValue: T) => void];
export {};
