import * as React from "react";
interface StochasticSeriesProps {
    readonly className?: string;
    readonly overBought?: number;
    readonly overSold?: number;
    readonly middle?: number;
    readonly refLineOpacity?: number;
    readonly stroke?: {
        top: string;
        middle: string;
        bottom: string;
        dLine: string;
        kLine: string;
    };
    readonly yAccessor: any;
}
export declare class StochasticSeries extends React.Component<StochasticSeriesProps> {
    static defaultProps: {
        className: string;
        stroke: {
            top: string;
            middle: string;
            bottom: string;
            dLine: string;
            kLine: string;
        };
        overSold: number;
        middle: number;
        overBought: number;
        refLineOpacity: number;
    };
    render(): JSX.Element;
    private readonly yAccessorForK;
    private readonly yAccessorForD;
}
export {};
