/// import { ViewStyle } from "react-native"; import AbstractChart, { AbstractChartProps } from "./AbstractChart"; export interface PieChartProps extends AbstractChartProps { data: Array; width: number; height: number; accessor: string; backgroundColor: string; paddingLeft: string; center?: Array; absolute?: boolean; hasLegend?: boolean; style?: Partial; } declare type PieChartState = {}; declare class PieChart extends AbstractChart { render(): JSX.Element; } export default PieChart; //# sourceMappingURL=PieChart.d.ts.map