import React from 'react'; import { ChartGrid as ChartGridProps } from '../types'; interface ChartGridComponentProps { /** Grid configuration */ grid: ChartGridProps; /** Chart plot width */ plotWidth: number; /** Chart plot height */ plotHeight: number; /** X-axis tick positions (normalized 0-1) */ xTicks?: number[]; /** Y-axis tick positions (normalized 0-1) */ yTicks?: number[]; /** Chart padding */ padding: { top: number; right: number; bottom: number; left: number; }; /** Use SVG rendering (default: true) */ useSVG?: boolean; } export declare const ChartGrid: React.FC; export default ChartGrid;