import { InsightExtractorProps } from "@antv/ava"; import { InsightMarkOptions } from "./insight"; export type LowVarianceMarkOptions = Omit & { algorithmParameter?: Pick; }; /** 低方差(均匀性)检测高阶 Mark * low variance detection augmented mark */ export declare const LowVariance: (options: LowVarianceMarkOptions) => {};