import { Margin } from '@nivo/core'; import { LineSeries, Point, LineSvgProps, LineSvgPropsWithDefaults } from './types'; declare const NonMemoizedMesh: ({ points, width, height, margin, setCurrent, onMouseEnter, onMouseMove, onMouseLeave, onMouseDown, onMouseUp, onClick, onDoubleClick, onTouchStart, onTouchMove, onTouchEnd, tooltip, debug, enableTouchCrosshair, }: { points: Point[]; width: number; height: number; margin: Margin; setCurrent: (point: Point | null) => void; onMouseEnter?: LineSvgProps["onMouseEnter"]; onMouseMove?: LineSvgProps["onMouseMove"]; onMouseLeave?: LineSvgProps["onMouseLeave"]; onMouseDown?: LineSvgProps["onMouseDown"]; onMouseUp?: LineSvgProps["onMouseUp"]; onClick?: LineSvgProps["onClick"]; onDoubleClick?: LineSvgProps["onDoubleClick"]; onTouchStart?: LineSvgProps["onTouchStart"]; onTouchMove?: LineSvgProps["onTouchMove"]; onTouchEnd?: LineSvgProps["onTouchEnd"]; tooltip: LineSvgPropsWithDefaults["tooltip"]; debug: boolean; enableTouchCrosshair: LineSvgPropsWithDefaults["enableTouchCrosshair"]; }) => import("react/jsx-runtime").JSX.Element; export declare const Mesh: typeof NonMemoizedMesh; export {}; //# sourceMappingURL=Mesh.d.ts.map