import { ChartScale } from './scales';
import { ScaleType } from './interfaces.js';
export interface SeriesInfo {
    label: string;
    color: string;
    markerType: 'line' | 'rectangle';
}
export interface ChartGridProps {
    xTitle?: string;
    yTitle?: string;
    xScale: ChartScale;
    yScale: ChartScale;
    xScaleType: ScaleType;
    yScaleType: ScaleType;
    innerWidth: number;
    innerHeight: number;
}
export default function Grid({ xScale, yScale, xTitle, yTitle, innerWidth, innerHeight }: ChartGridProps): JSX.Element;
