import { type Atom } from "@mongez/atom";
import React from "react";
import { ReactAtom } from "./types";
export declare const AtomContext: any;
/**
 * Get clone of the given atom key
 */
export declare function useAtom<T = any>(key: string): ReactAtom<T>;
export declare function AtomProvider({ register, defaultValue, children, }: {
    register?: Atom<any>[];
    children: React.ReactNode;
    defaultValue?: any;
}): any;
//# sourceMappingURL=context.d.ts.map