import React from 'react'; import type { ChartGetMarker, ChartScrubParams } from '@coinbase/cds-common/types/Chart'; import { type SparklineInteractiveProps } from './SparklineInteractive'; export type SparklineInteractivePanGestureHandlerProps = Pick< SparklineInteractiveProps, 'allowOverflowGestures' > & { onScrub?: (params: ChartScrubParams) => void; getMarker: ChartGetMarker; selectedPeriod: Period; onScrubEnd?: () => void; onScrubStart?: () => void; disabled?: boolean; children: React.ReactNode; }; export declare const SparklineInteractivePanGestureHandler: ({ onScrubEnd, onScrubStart, onScrub, getMarker, selectedPeriod, children, disabled, allowOverflowGestures, }: SparklineInteractivePanGestureHandlerProps) => import('react/jsx-runtime').JSX.Element; //# sourceMappingURL=SparklineInteractivePanGestureHandler.d.ts.map