import { ReactEventHandler, type KeyboardEvent as ReactKeyboardEvent } from 'react'; import type { AxisIdToScales } from '../../context/XYChartScales.context.js'; import type { XYChartAxisInternal } from '../../types/xy-chart-internals.js'; export declare const allowWhenKeyIsEnter: (action: (event?: ReactEventHandler) => void) => (event: ReactKeyboardEvent) => void; export declare function areAllDomainsUnchanged(axes: XYChartAxisInternal[], axisIdToScale: AxisIdToScales): boolean;