import { IAtom } from "mobx";
import type { SnapshotOutOf } from "./SnapshotOf";
interface SnapshotData<T extends object> {
    standard: SnapshotOutOf<T>;
    readonly atom: IAtom;
}
/**
 * @ignore
 */
export declare function reportInternalSnapshotObserved(sn: Readonly<SnapshotData<any>>): void;
export {};
