import type { BoxplotChartProps as BoxplotChartPropsPreact } from '@sisense/sdk-ui-preact'; import type { PropType } from 'vue'; /** * Props of the {@link @sisense/sdk-ui-vue!BoxplotChart | `BoxplotChart`} component. */ export interface BoxplotChartProps extends BoxplotChartPropsPreact { } /** * A Vue component representing data in a way that visually describes the distribution, variability, * and center of a data set along an axis. * * @example * Here's how you can use the BoxplotChart component in a Vue application: * ```vue * * *