import { Atom, Selector } from './mod'; export declare const defaultAtomsValues: Map; export declare const atomsInitializeObjects: Map; export declare const filtersInitializeObjects: Map; export declare const defaultAtomsInAtomic: Map; export declare const usedKeys: Map; export declare const defaultFiltersValues: Map; export declare const atomsEffectsCleanupFunctons: Map; export declare const pendingAtoms: Map; /** * Get the current value of an atom. You can pass a specific prefix as the second argument. */ export declare function getAtomValue($atom: Atom | Atom, prefix?: string): R; /** * Get the current value of a filter. You can pass a specific prefix as the second argument. */ export declare function getFilterValue($filter: (() => R | Promise) | Selector>, prefix?: string): R; export declare const getAtom: typeof getAtomValue; export declare const getFilter: typeof getFilterValue; export declare const getSelector: typeof getFilterValue; export declare function getValue(init: Atom | Selector, storeName?: string | boolean): R;