import type { InsightExtractorProps } from "@antv/ava"; import { type InsightMarkOptions } from "./insight"; export type ChangePointMarkOptions = Omit & { algorithmParameter?: Pick; }; /** 突变点检测高阶 Mark * change point detection augmented mark */ export declare const ChangePoint: (options: ChangePointMarkOptions) => {};