import * as React from 'react'; export interface NumberFieldScrubAreaContext { isScrubbing: boolean; isTouchInput: boolean; isPointerLockDenied: boolean; scrubAreaCursorRef: React.RefObject; scrubAreaRef: React.RefObject; direction: 'horizontal' | 'vertical'; pixelSensitivity: number; teleportDistance: number | undefined; } export declare const NumberFieldScrubAreaContext: React.Context; export declare function useNumberFieldScrubAreaContext(): NumberFieldScrubAreaContext;