import { CommonService } from '../../../service/common.service'; export declare class RingPieService { private commonService; constructor(commonService: CommonService); getChartTitle(value: any): { text: any; left: string; top: string; textAlign: string; textStyle: { fontFamily: string; fontWeight: string; fontSize: number; color: any; textAlign: string; }; }; getChartSeries(value: any): { name: any; type: string; clockWise: boolean; radius: number[]; itemStyle: { normal: { color: any; shadowColor: any; shadowBlur: number; label: { show: boolean; }; labelLine: { show: boolean; }; }; }; hoverAnimation: boolean; center: string[]; data: ({ value: any; label: { normal: { formatter: (params: any) => string; position: string; show: boolean; textStyle: { fontSize: any; fontWeight: string; color: any; }; }; }; name?: undefined; itemStyle?: undefined; } | { value: number; name: string; itemStyle: { normal: { color: any; }; emphasis: { color: any; }; }; label?: undefined; })[]; }; getBgColor(darkMode: any): { fontColor: string; bgColor: string; }; }