import { type ReactNode } from 'react'; import { PartialSingleValueGridConfig, SingleValueGridAccessorsConfig, type SingleValueGridIntentsConfig, type SingleValueGridProps, type SingleValueGridToolbarConfig } from '../types/single-value-grid.js'; type SlotsConfig = PartialSingleValueGridConfig & { intents: SingleValueGridIntentsConfig; toolbar: SingleValueGridToolbarConfig; }; export declare const iterateSlots: (children: ReactNode, props: Pick) => SlotsConfig & { accessors: SingleValueGridAccessorsConfig; }; export {};