import { XAxisProps, YAxisProps, TooltipProps } from 'recharts'; import { ValueType, NameType } from 'recharts/types/component/DefaultTooltipContent'; import { ContentType, Formatter } from 'recharts/types/component/DefaultLegendContent'; import { BarPropsType, LineProps } from './types'; interface IProps { data: any[]; percentage?: number; xAxisProps: XAxisProps; tooltipProps?: TooltipProps; lineProps?: LineProps; barProps: BarPropsType; yAxisProps?: YAxisProps; endYaxisProps?: YAxisProps; height?: number; legendProps?: { content?: ContentType; formatter?: Formatter; }; primaryColor?: string; secondaryColor?: string; barColor?: string; rtl?: boolean; showGrid?: boolean; showYAxis?: boolean; showLegend?: boolean; } export declare function BCBarLineChart({ data, percentage, tooltipProps, xAxisProps, lineProps, barProps, yAxisProps, endYaxisProps, height, legendProps, primaryColor, secondaryColor, barColor, rtl, showGrid, showYAxis, showLegend }: IProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};