import type { CanvasRef } from '../../core/components/canvas/Canvas.js'; import type { RectDatapointInternal, XYChartSeriesWithDatapoints } from '../types/xy-chart-internals.js'; interface XYChartGenericCanvasProps { seriesWithDatapoints: XYChartSeriesWithDatapoints[]; rectFilterCallback?: (d: RectDatapointInternal) => boolean; } export declare const XYChartGenericCanvasLayout: (props: XYChartGenericCanvasProps & import("react").RefAttributes) => import("react").ReactElement | null; export {};