import { FluidValue } from '@react-spring/shared';
export declare type TreeContext = {
    /**
     * Any animated values found when updating the payload of an `AnimatedObject`
     * are also added to this `Set` to be observed by an animated component.
     */
    dependencies: Set<FluidValue> | null;
};
export declare const TreeContext: TreeContext;
