export declare const FOLLOW_ANIMATION_DURATION = 1000; /** * Pan-exit threshold as a fraction of the viewport. * * This is applied against the smaller of the container width/height, and then * clamped to a sensible pixel range so it behaves consistently across mobile * and desktop. * * 22% provides a comfortable "dead zone" for minor adjustments while still * letting users intentionally pan away to exit follow mode. */ export declare const PAN_EXIT_THRESHOLD_VIEWPORT_FRACTION = 0.22; /** Minimum screen distance in pixels beyond which follow mode exits when user pans */ export declare const PAN_EXIT_THRESHOLD_MIN_PIXELS = 96; /** Maximum screen distance in pixels beyond which follow mode exits when user pans */ export declare const PAN_EXIT_THRESHOLD_MAX_PIXELS = 180;