import { type ReactNode } from 'react'; import { type ChartInteractionsConfig } from '../types/interactions.js'; /** * Generate chart config based on slots * @param children - CharInteraction children * @returns ChartInteraction slot config */ export declare const iterateChartInteractionsSlots: (children: ReactNode) => ChartInteractionsConfig;