import * as React from "react"; export interface KagiSeriesProps { /** * Current value stroke */ readonly currentValueStroke?: string; /** * Fill values. */ readonly fill: { yang: string; yin: string; }; /** * Stroke values. */ readonly stroke: { yang: string; yin: string; }; /** * Stroke width. */ readonly strokeWidth?: number; } /** * `KagiSeries` tracks price movement mostly independantly of time. */ export declare class KagiSeries extends React.Component { static defaultProps: { currentValueStroke: string; fill: { yang: string; yin: string; }; stroke: { yang: string; yin: string; }; strokeWidth: number; }; render(): JSX.Element; private readonly drawOnCanvas; private readonly helper; }