/// <reference types="react" />
import { ILegend, ILabeling } from '../../atoms/Chart/types';
export interface Props {
    config: {
        circular: {
            label: string;
            value: string;
            innerRadius?: number;
            strokeWidth?: number;
            strokeColor?: string;
        };
        labeling?: ILabeling;
        legend?: ILegend;
    };
    callback?: (elm: HTMLElement) => void;
    data: any[];
    height: string;
}
declare const _default: (props: Props) => JSX.Element;
export default _default;
