import * as React from 'react'; export interface NumberFieldScrubAreaContext { isScrubbing: boolean; isTouchInput: boolean; isPointerLockDenied: boolean; scrubAreaCursorRef: React.RefObject; } export declare const NumberFieldScrubAreaContext: React.Context; export declare function useNumberFieldScrubAreaContext(): NumberFieldScrubAreaContext;