import * as React from 'react'; import { ScrubHandle, ScrubParams } from './useScrub.types'; /** * @ignore - internal hook. */ export declare function useScrub(params: ScrubParams): { isScrubbing: boolean; getScrubAreaProps: (externalProps?: React.ComponentPropsWithRef<"span">) => React.ComponentPropsWithRef<"span">; getScrubAreaCursorProps: (externalProps?: React.ComponentPropsWithRef<"span">) => React.ComponentPropsWithRef<"span">; scrubAreaCursorRef: React.RefObject; scrubAreaRef: React.RefObject; scrubHandleRef: React.RefObject; };