import * as React from "react"; export interface PointAndFigureSeriesProps { readonly className?: string; readonly clip?: boolean; readonly fill?: { up: string; down: string; }; readonly stroke?: { up: string; down: string; }; readonly strokeWidth?: number; } export declare class PointAndFigureSeries extends React.Component { static defaultProps: { className: string; strokeWidth: number; stroke: { up: string; down: string; }; fill: { up: string; down: string; }; clip: boolean; }; render(): JSX.Element; private readonly drawOnCanvas; private readonly getColumns; private readonly drawOnCanvasPrivate; }