import * as React from 'react'; import type { IDynamicDataWidgetProps } from './IDynamicDataWidget'; export default class DynamicDataWidget extends React.Component { private _widgetSources; /** * Renders the dynamic data widget. */ render(): React.ReactElement; /** * Source is usually shared. However, in the case of DynamicFieldSet there * is a possibility that multiple fields are passed, with no shared configuration. * * It is assumed that if the property is shared, then automatically source will * become shared. */ private _isSourceShared; private _renderWidgetSource; } //# sourceMappingURL=DynamicDataWidget.d.ts.map