import React from 'react'; import { LayoutType, StackOffsetType, CategoricalChartOptions, Margin, ChartOffset, BaseAxisProps, ChartCoordinate, TickItem } from '../util/types'; export interface CategoricalChartState { chartX?: number; chartY?: number; dataStartIndex?: number; dataEndIndex?: number; activeTooltipIndex?: number; isTooltipActive?: boolean; updateId?: number; xAxisMap?: { [k: string]: BaseAxisProps; }; yAxisMap?: { [k: string]: BaseAxisProps; }; orderedTooltipTicks?: any; tooltipAxis?: BaseAxisProps; tooltipTicks?: TickItem[]; graphicalItems?: any; activeCoordinate?: ChartCoordinate; offset?: ChartOffset; angleAxisMap?: any; radiusAxisMap?: any; formattedGraphicalItems?: any; activePayload?: any[]; tooltipAxisBandSize?: number; activeItem?: any; activeLabel?: string; xValue?: number; yValue?: number; legendBBox?: any; prevData?: any[]; prevWidth?: number; prevHeight?: number; prevLayout?: LayoutType; prevStackOffset?: StackOffsetType; prevMargin?: Margin; prevChildren?: any; } export declare type CategoricalChartFunc = (nextState: CategoricalChartState, event: any) => void; export interface CategoricalChartProps { syncId?: number | string; syncMethod?: 'index' | 'value' | Function; compact?: boolean; width?: number; height?: number; data?: any[]; layout?: LayoutType; stackOffset?: StackOffsetType; throttleDelay?: number; margin?: Margin; barCategoryGap?: number | string; barGap?: number | string; barSize?: number | string; maxBarSize?: number; style?: any; className?: string; children?: any; defaultShowTooltip?: boolean; onClick?: CategoricalChartFunc; onMouseLeave?: CategoricalChartFunc; onMouseEnter?: CategoricalChartFunc; onMouseMove?: CategoricalChartFunc; onMouseDown?: CategoricalChartFunc; onMouseUp?: CategoricalChartFunc; reverseStackOrder?: boolean; id?: string; startAngle?: number; endAngle?: number; cx?: number | string; cy?: number | string; innerRadius?: number | string; outerRadius?: number | string; title?: string; desc?: string; } export declare const generateCategoricalChart: ({ chartName, GraphicalChild, defaultTooltipEventType, validateTooltipEventTypes, axisComponents, legendContent, formatAxisMap, defaultProps, }: CategoricalChartOptions) => { new (props: CategoricalChartProps): { uniqueChartId: any; clipPathId: any; legendInstance: any; deferId: any; container?: any; componentDidMount(): void; componentDidUpdate(prevProps: CategoricalChartProps): void; componentWillUnmount(): void; cancelThrottledTriggerAfterMouseMove(): void; getTooltipEventType(): string; getMouseInfo(event: any): { xValue: any; yValue: any; chartX: number; chartY: number; } | { activeTooltipIndex: number; activeLabel: any; activePayload: any[]; activeCoordinate: ChartCoordinate; chartX: number; chartY: number; }; getCursorRectangle(): any; getCursorPoints(): any; inRange(x: number, y: number): any; parseEventsOfWrapper(): any; addListener(): void; removeListener(): void; clearDeferId: () => void; handleLegendBBoxUpdate: (box: any) => void; handleReceiveSyncEvent: (cId: number | string, chartId: string, data: CategoricalChartState) => void; handleBrushChange: ({ startIndex, endIndex }: any) => void; handleMouseEnter: (e: any) => void; triggeredAfterMouseMove: (e: any) => any; handleItemMouseEnter: (el: any) => void; handleItemMouseLeave: () => void; handleMouseMove: (e: any) => void; handleMouseLeave: (e: any) => void; handleOuterEvent: (e: any) => void; handleClick: (e: any) => void; handleMouseDown: (e: any) => void; handleMouseUp: (e: any) => void; handleTouchMove: (e: any) => void; handleTouchStart: (e: any) => void; handleTouchEnd: (e: any) => void; triggerSyncEvent(data: CategoricalChartState): void; applySyncEvent(data: CategoricalChartState): void; verticalCoordinatesGenerator: ({ xAxis, width, height, offset }: ChartCoordinate) => number[]; horizontalCoordinatesGenerator: ({ yAxis, width, height, offset }: ChartCoordinate) => number[]; axesTicksGenerator: (axis?: any) => TickItem[]; filterFormatItem(item: any, displayName: any, childIndex: any): any; renderCursor: (element: any) => React.DetailedReactHTMLElement | React.CElement>; renderPolarAxis: (element: any, displayName: string, index: number) => React.DetailedReactHTMLElement; renderXAxis: (element: any, displayName: string, index: number) => React.ReactElement>; renderYAxis: (element: any, displayName: string, index: number) => React.ReactElement>; renderAxis(axisOptions: BaseAxisProps, element: any, displayName: string, index: number): React.ReactElement; renderGrid: (element: React.ReactElement) => React.ReactElement; renderPolarGrid: (element: React.ReactElement) => React.ReactElement; renderLegend: () => React.ReactElement; renderTooltip: () => React.ReactElement; renderBrush: (element: React.ReactElement) => React.ReactElement>; renderReferenceElement: (element: React.ReactElement, displayName: string, index: number) => React.ReactElement; renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => React.ReactElement>[]; renderGraphicChild: (element: React.ReactElement, displayName: string, index: number) => any[]; renderCustomized: (element: React.ReactElement, displayName: string, index: number) => React.ReactElement; renderClipPath(): JSX.Element; getXScales(): { [x: string]: Function | import("../util/types").ScaleType; }; getYScales(): { [x: string]: Function | import("../util/types").ScaleType; }; getXScaleByAxisId(axisId: string): Function | import("../util/types").ScaleType; getYScaleByAxisId(axisId: string): Function | import("../util/types").ScaleType; getItemByXY(chartXY: { x: number; y: number; }): { graphicalItem: any; payload: any; }; render(): JSX.Element; context: any; setState(state: CategoricalChartState | ((prevState: Readonly, props: Readonly) => CategoricalChartState | Pick) | Pick, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly & Readonly<{ children?: React.ReactNode; }>; state: Readonly; refs: { [key: string]: React.ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; }; displayName: string; defaultProps: CategoricalChartProps; getDerivedStateFromProps: (nextProps: CategoricalChartProps, prevState: CategoricalChartState) => CategoricalChartState; renderActiveDot: (option: any, props: any) => React.ReactElement; contextType?: React.Context; };