import type { ColumnConfig } from '@ant-design/plots'; import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; export type ColumnDataItem = { category: string | number; value: number; [key: string]: string | number; }; export type ColumnProps = BasePlotProps & Partial & Theme & Style & { group?: boolean; stack?: boolean; }; declare const Column: (props: ColumnProps) => React.JSX.Element; export default Column;