import type { ValueRepresentation } from '../../core/types/scales.js'; /** * Resolves the effective valueRepresentation using "any-relative-wins": * returns 'relative' if any value is 'relative', otherwise 'absolute'. */ export declare function resolveValueRepresentation(...values: (ValueRepresentation | undefined)[]): ValueRepresentation;