import { D as DecodedWeight } from './weight-decoder-DMScCVae.js'; import { TensorOrder } from '@wetron/common/ir'; type AxisMetric = 'mean' | 'std' | 'l1' | 'l2' | 'max-abs' | 'zero-ratio'; interface AxisStats { readonly axis: number; readonly metrics: Readonly>; readonly excluded: readonly number[]; readonly min: number; readonly max: number; } declare function computeAxisStats(values: DecodedWeight, shape: readonly number[], axis: number, order?: TensorOrder): AxisStats; export { type AxisMetric, type AxisStats, computeAxisStats };