interface PieProps {
    type: string;
    size: string;
    isMarkLine: boolean;
    title: string;
    unit: string;
}
declare const getPieOptions: (options?: object, props?: PieProps) => {};
declare const changePieSeries: (options?: any, props?: PieProps, dataIndex?: number, savedLevelIndexes?: number[]) => {
    [x: string]: globalThis.Ref<any, any>;
};
export { getPieOptions, changePieSeries };
