import React from 'react'; import { UseChartPointerOptions } from './useChartPointer'; export interface ChartGestureSurfaceProps extends Omit { padding: { top: number; right: number; bottom: number; left: number; }; plotWidth: number; plotHeight: number; /** Overlay size — usually the full chart (width/height). Defaults to filling parent. */ width?: number; height?: number; style?: any; children?: React.ReactNode; } export declare const ChartGestureSurface: React.FC;