/// <reference types="react" />
import { IBaseConfig } from '../../atoms/Chart/types';
export interface Props {
    config: IBaseConfig & {
        groupBy: string;
    };
    data: any[];
    height: string;
}
declare const _default: (props: Props) => JSX.Element;
export default _default;
