import { type ReactNode } from 'react'; import type { PieChartSlots } from '../types/pie-chart.config.js'; /** * Iterate over the slotted children to merge the configuration. * @param children - Slotted children to iterate * @returns Merged config as PieChartSlots */ export declare function iterateSlots(children: ReactNode): PieChartSlots;