import type { InsightExtractorProps } from "@antv/ava"; /** 目前可支持的能产生 insight annotations 的 marks */ export declare const INSIGHT_TYPES: InsightExtractorProps["insightType"][]; export type InsightMarkOptions = InsightExtractorProps & { insightType: (typeof INSIGHT_TYPES)[number]; encode?: { /** 兼容 x, y 类型传参,默认 x 轴为维度,y 轴为指标 */ x?: string; y?: string; }; }; export declare const Insight: (options: InsightMarkOptions) => {};