import { type ReactNode } from 'react'; import { type CanvasRef } from '../../core/components/canvas/Canvas.js'; interface XYChartCanvasPlotProps { children: ReactNode; shifted?: boolean; } export declare const XYChartCanvasPlot: (props: XYChartCanvasPlotProps & import("react").RefAttributes) => import("react").ReactElement | null; export {};