import type { InsightExtractorProps } from "@antv/ava"; import { type InsightMarkOptions } from "./insight"; export type CorrelationMarkOptions = Omit & { algorithmParameter?: Pick; }; /** 相关性拟合线高阶 Mark * correlation regression line */ export declare const Correlation: (options: CorrelationMarkOptions) => {};