import type { LineChartProps as LineChartPropsPreact } from '@sisense/sdk-ui-preact'; import type { PropType } from 'vue'; /** * Props of the {@link @sisense/sdk-ui-vue!LineChart | `LineChart`} component. */ export interface LineChartProps extends LineChartPropsPreact { } /** * A Vue component that wraps the LineChart Preact component for use in Vue applications. * It maintains compatibility with Vue's reactivity system while preserving the functionality of the LineChart. * * @example * Here's how you can use the LineChart component in a Vue application: * ```vue * * *