import * as React from "react"; export interface RenkoSeriesProps { readonly clip?: boolean; readonly fill?: { up: string; down: string; partial: string; }; readonly stroke?: { up: string; down: string; }; readonly yAccessor?: (data: any) => any; } export declare class RenkoSeries extends React.Component { static defaultProps: { clip: boolean; fill: { up: string; down: string; partial: string; }; stroke: { up: string; down: string; }; yAccessor: (d: any) => { open: any; high: any; low: any; close: any; }; }; render(): JSX.Element; private readonly drawOnCanvas; private readonly getRenko; }