import * as React from 'react'; import type { FieldTransferObject } from "./GridChartsPanelDataBody.js"; interface GridChartsPanelDataFieldMenuProps { field: string; section: FieldTransferObject['section']; blockedSections?: string[]; dimensionsLabel: string; valuesLabel: string; } declare function GridChartsPanelDataFieldMenu(props: GridChartsPanelDataFieldMenuProps): React.JSX.Element | null; export { GridChartsPanelDataFieldMenu };