import type { AreaChartProps as AreaChartPropsPreact } from '@sisense/sdk-ui-preact'; import type { PropType } from 'vue'; /** * Props of the {@link @sisense/sdk-ui-vue!AreaChart | `AreaChart`} component. */ export interface AreaChartProps extends AreaChartPropsPreact { } /** * A Vue component similar to a {@link LineChart}, * but with filled in areas under each line and an option to display them as stacked. * * @example * Here's how you can use the AreaChart component in a Vue application: * ```vue * * *