import type { ChartAdapter } from './adapter-shared.js';
import type { ChartRendererHostOptions } from './dom-types.js';
import type { ChartValue } from './types.js';
export declare function createChartRendererAdapter<TDatum, TXValue extends ChartValue = ChartValue, TYValue extends ChartValue = ChartValue>(initialOptions: ChartRendererHostOptions<TDatum, TXValue, TYValue>): ChartAdapter<ChartRendererHostOptions<TDatum, TXValue, TYValue>, TDatum, TXValue, TYValue>;
