import type { ColumnChartProps as ColumnChartPropsPreact } from '@sisense/sdk-ui-preact';
import type { PropType } from 'vue';
/**
* Props of the {@link @sisense/sdk-ui-vue!ColumnChart | `ColumnChart`} component.
*/
export interface ColumnChartProps extends ColumnChartPropsPreact {
}
/**
* A Vue component representing categorical data with vertical rectangular bars
* whose heights are proportional to the values that they represent.
*
* @example
* Here's how you can use the ColumnChart component in a Vue application:
* ```vue
*
*
*
*