export default create; declare function create({ layoutService, getMinMax, colorModel, chart, translator, keys: { colorScale: colorScaleKey }, isEnabled, }: { layoutService: any; getMinMax: any; colorModel: any; chart: any; translator: any; keys: { colorScale: any; }; isEnabled?: (() => boolean) | undefined; }): { query: { hasTrendLines: () => boolean; getData: () => { x: number; y: number; dimValue: number; layerId: number; measureIndex: number; }[]; getStroke: Function; getLineDash: (index: any) => any; getLabel: (index: any) => any; getExpression: (index: any) => any; isFlipped: (index: any) => any; getType: (index: any) => any; getMinMax: () => { min: number; max: number; }; getCalculatedValue: (index: any, value: any, dimValue: any) => any; }; command: { update: () => void; }; };