import type { BoxConfig } from '@ant-design/plots'; import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; type BoxplotDatum = { category: string; value: number; group?: string; }; export type BoxplotProps = BasePlotProps & Partial & Theme & Style; declare const Boxplot: (props: BoxplotProps) => React.JSX.Element; export default Boxplot;