/// <reference types="react" />
import { EChartsOption } from "echarts";
import { LogicformAPIResultType } from "zeroetp-api-sdk";
export declare type ChartRepresentationProps = {
    result: LogicformAPIResultType;
    option?: EChartsOption;
    targetPred?: string;
    eventsDict?: Record<string, Function>;
    style?: React.CSSProperties;
    isMobile?: boolean;
    height?: number;
    title?: string;
};
