/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { MapContext } from '../../MapContext.js'; import * as React from 'react'; /** * @hidden */ export interface CollectionConfigurationProps { _mapKey: string; _parentStore?: any; [x: string]: any; } /** * @hidden */ export default class CollectionConfigurationComponent extends React.Component { static contextType: React.Context; context: React.ContextType; get optionsStore(): import('../../store/store').Store | undefined; renderChildren(child: any, index: number): React.DetailedReactHTMLElement; render(): any; }