/** * @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 ConfigurationComponentProps { _mapKey?: string; _mapCollectionIdxKey?: string; _parentStore?: any; [x: string]: any; } /** * @hidden */ export default class ConfigurationComponent extends React.Component { static contextType: React.Context; context: React.ContextType; childStore: any; get optionsStore(): import('./../../store/store').Store | undefined; constructor(props: any); render(): any; componentDidMount(): void; componentDidUpdate(): void; private dispatch; private renderChildren; }