import React from 'react'; import { Animated } from 'react-native'; import type { ChartScrubParams } from '@coinbase/cds-common/types/Chart'; import type { SparklineInteractiveBaseProps } from './SparklineInteractive'; type Props = Pick< SparklineInteractiveBaseProps, 'formatHoverDate' > & { shouldTakeUpHeight: boolean; }; export declare function setTransform( x: number, elWidth: number, containerWidth: number, transform: Animated.ValueXY, gutter: number, ): void; export type SparklineInteractiveHoverDateRefProps = { update: (params: ChartScrubParams) => void; }; type ForwardRefWithPeriod = ( props: Props & { ref?: React.Ref>; }, ) => React.ReactElement; export declare const SparklineInteractiveHoverDate: ForwardRefWithPeriod; export {}; //# sourceMappingURL=SparklineInteractiveHoverDate.d.ts.map