import React from 'react'; import { ErrorManagement } from '../../types/general'; /** * Props for ScatterPlot controls. * * The presence or absence of an optional callback will * determine if that control is displayed. */ export declare type ScatterPlotControlsProps = { /** Additional styles for controls container. Optional */ containerStyles?: React.CSSProperties; /** Color to use as an accent in the control panel. Will accept any * valid CSS color definition. Defaults to LIGHT_BLUE */ accentColor?: string; /** Attributes and methods for error management. */ errorManagement: ErrorManagement; /** ScatterPlot: valueSpec */ valueSpec?: string; /** ScatterPlot: onValueSpecChange */ onValueSpecChange?: (valueSpec: string) => void; /** How buttons are displayed. Vertical or Horizontal */ orientation?: 'vertical' | 'horizontal'; /** location of radio button label: start: label & button; end: button & label */ labelPlacement?: 'start' | 'end' | 'top' | 'bottom'; /** minimum width to set up equivalently spaced width per item */ minWidth?: number; /** button color: for now, supporting blue and red only - primary: blue; secondary: red */ buttonColor?: 'primary' | 'secondary'; /** margin of radio button group: string array for top, left, bottom, and left, e.g., ['10em', '0', '0', '10em'] */ margins?: string[]; /** marginRight of radio button item: default 16px from MUI */ itemMarginRight?: number | string; /** plot options as props */ plotOptions?: string[]; /** label for RadioButtonGroup */ label?: string; }; /** * A ScatterPlot controls panel. * * If you prefer a different layout or composition, you can * contruct you own control panel by using the various * widgets contained here. */ export default function ScatterPlotControls({ accentColor, errorManagement, containerStyles, valueSpec, onValueSpecChange, orientation, labelPlacement, buttonColor, margins, itemMarginRight, plotOptions, label, }: ScatterPlotControlsProps): JSX.Element; //# sourceMappingURL=ScatterPlotControls.d.ts.map