/** @jsx jsx */ /** @jsxFrag React.Fragment */ import type { ItemClassConfiguration } from '@riboseinc/paneron-registry-kit/types'; import { type CommonGRItemData } from './common'; export interface CoordinateSystemAxisData extends CommonGRItemData { abbreviation: string; orientation: string; unitOfMeasurement: string; maxValue: number | null; minValue: number | null; rangeMeaning?: 'exact' | 'wraparound'; } export declare const coordinateSystemAxis: ItemClassConfiguration;