import * as React from 'react'; export interface ChartsZoomSliderThumbOwnerState { onMove: (event: PointerEvent) => void; orientation: 'horizontal' | 'vertical'; placement: 'start' | 'end'; } export interface ChartsZoomSliderThumbProps extends Omit, 'orientation'>, ChartsZoomSliderThumbOwnerState { onInteractionStart?: () => void; onInteractionEnd?: () => void; } /** * Renders the zoom slider thumb, which is responsible for resizing the zoom range. * @internal */ export declare const ChartsAxisZoomSliderThumb: React.ForwardRefExoticComponent & React.RefAttributes>;