import React from 'react'; import { PlotProps } from './PlotlyPlot'; import { BoxplotData, OpacityAddon, OrientationAddon, AxisTruncationAddon } from '../types/plots'; import { NumberOrDateRange } from '../types/general'; export interface BoxplotProps extends PlotProps, OrientationAddon, OpacityAddon, AxisTruncationAddon { /** label for independent axis */ independentAxisLabel?: string; /** label for the (typically) y-axis, e.g. Wealth */ dependentAxisLabel?: string; /** set the range of the dependent axis (optional) */ dependentAxisRange?: NumberOrDateRange; /** show the rawData (if given) - optional */ showRawData?: boolean; /** Show the mean as an extra dotted line in the box - optional */ showMean?: boolean; /** show/hide independent axis tick label */ showIndependentAxisTickLabel?: boolean; /** show/hide dependent axis tick label */ showDependentAxisTickLabel?: boolean; /** dependentValueType: 'number' | 'date' */ dependentValueType?: 'number' | 'date'; } declare const Boxplot: React.ForwardRefExoticComponent>; export default Boxplot; //# sourceMappingURL=Boxplot.d.ts.map