/// import type { CommonPropsType } from '../../../types'; import { DataSource, Xfield, Yfield } from '../common/core/type'; export interface PropsType extends Omit { directionType?: 'crosswise' | 'lengthways'; isPile?: boolean; isTitle?: boolean; title?: string; titleLocation?: string; dataSource?: DataSource; filterData?: string; setColor?: Array; xField?: Xfield; xStatistics?: string; groupKey?: Xfield; groupKeyTimeSpan?: string; xIsCountEmpty?: boolean; yField?: Yfield; isLegend?: boolean; legend?: string; legend2?: string; isXaxisName?: boolean; xAxisName?: string; isXaxisAxisLabelShow?: boolean; isXaxisAxisTickShow?: boolean; isXaxisAxisLabelRotate?: boolean; isYAxisSplitlineLinestyleWidth?: boolean; yAxisSplitlineLinestyleType?: string; yAxisMax?: number; yAxisMin?: number; isYAxisName?: boolean; yAxisName?: string; isSeriesShowSymbol?: boolean; isYAxisShow?: boolean; isUnit?: boolean; unit?: number; decimalDigits?: number; suffix?: string; } export default function Bar(opts: PropsType): JSX.Element;