import { z } from 'zod/v4'; import { axesMappingSchema, ColumnJSON } from '../types'; /** * For cartesian charts, moves measure column indices mistakenly placed in breakBy * into value so translateChartFromJSON accepts the mapping. */ export declare function normalizeCartesianAxesMapping(axesMapping: z.infer, columnsJSON: ColumnJSON[]): z.infer;