export declare const pieOptions: (props: any, flag?: boolean) => {
    backgroundColor: any;
    color: any;
    tooltip: {
        show: boolean;
        trigger: string;
        formatter: (params: any) => any;
    };
    legend: {
        trigger: string;
        show: boolean;
        orient: string;
        left: string;
        itemWidth: number;
        itemHeight: number;
        textStyle: {
            fontSize: number;
            color: string;
            lineHeight: number;
            rich: {
                a: {
                    verticalAlign: string;
                };
            };
            padding: number[];
        };
    };
    grid: any;
    textStyle: {
        fontSize: any;
        color: string;
    };
    series: any;
};
