import type { ChartMark, ChartValue } from './types.js';
/** Keeps one mark's scale and painted geometry while removing interaction ownership. */
export declare function decorative<TDatum, TXPointValue extends ChartValue, TYPointValue extends ChartValue, TXScaleValue extends ChartValue, TYScaleValue extends ChartValue>(mark: ChartMark<TDatum, TXPointValue, TYPointValue, TXScaleValue, TYScaleValue>): ChartMark<TDatum, never, never, TXScaleValue, TYScaleValue>;
