devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
11 lines (10 loc) • 432 B
TypeScript
import React from 'react';
import { type SelectBoxTypes } from 'devextreme-react/select-box';
import { IEditorViewModel } from '@devexpress/analytics-core/property-grid/widgets/editor';
export declare const SelectBoxEditorBase: (getEditorOptions: () => SelectBoxTypes.Properties) => React.FC<{
data: IEditorViewModel;
}>;
declare const SelectBoxEditor: React.FC<{
data: IEditorViewModel;
}>;
export default SelectBoxEditor;