import { PivotAggregation, PivotAggregationPreset, PivotChartTypePreset, PivotConfig, PivotField } from './types'; /** 默认配置 */ export declare const DEFAULT_PIVOT_CONFIG: PivotConfig; /** 聚合方式预设 */ export declare const PIVOT_AGGREGATION_PRESETS: PivotAggregationPreset[]; /** 图表类型预设 */ export declare const PIVOT_CHART_TYPE_PRESETS: PivotChartTypePreset[]; /** 字段类型预设 */ export declare const PIVOT_FIELD_TYPE_PRESETS: { value: string; label: any; }[]; /** 字段角色预设 */ export declare const PIVOT_FIELD_ROLE_PRESETS: { value: string; label: any; }[]; /** 数字格式预设 */ export declare const PIVOT_NUMBER_FORMAT_PRESETS: { value: string; label: any; }[]; /** 创建字段 */ export declare const createField: (overrides?: Partial) => PivotField; /** 聚合函数表 */ export declare const AGGREGATORS: Record number>; /** 图表颜色 */ export declare const PIVOT_CHART_COLORS: string[];