import { InsightExtractorProps } from "@antv/ava"; import { type InsightMarkOptions } from "./insight"; export type CategoryOutlierMarkOptions = Omit & { algorithmParameter?: Pick; }; /** 类别型数据异常检测高阶 Mark * category outlier detection augmented mark */ export declare const CategoryOutlier: (options: CategoryOutlierMarkOptions) => {};