import React from "react";
import { LogicformAPIResultType, LogicformType } from "zeroetp-api-sdk";
import "./index.less";
export declare type AnalyzerProps = {
    result: LogicformAPIResultType;
    xlsx?: any;
    title?: string;
    upColor?: string;
    downColor?: string;
    onChangeLogicform?: (logicform: LogicformType) => void;
    defaultOperator?: "$mom" | "$yoy";
    customSummary?: string;
};
declare const Analyzer: React.FC<AnalyzerProps>;
export default Analyzer;
