import { type ReactElement } from 'react'; import type { PropsFromGrid } from '../../core/components/single-value-renderer/types/single-value-base-props.js'; import type { PartialSingleValueGridConfig, SingleValueGridIntentsConfig } from '../types/single-value-grid.js'; type SingleIntentsData = Record; export declare const buildPropsFromGrid: (toolbar: PartialSingleValueGridConfig["toolbar"], singleIntents: SingleValueGridIntentsConfig["single"], gridIntents: SingleValueGridIntentsConfig["grid"], labelText: string) => (data: SingleIntentsData) => { intentsAsyncTemplate: () => Promise; toolbar: PropsFromGrid["toolbar"]; } | undefined; export {};