import { PureComponent } from 'react';
export interface PieArcLabelProps {
    data: any;
    centroid: any;
    format?: (v: any) => any;
    fontFill: string;
    fontSize: number;
    fontFamily: string;
    lineStroke: string;
    padding: string;
    position: [number, number];
}
export declare class PieArcLabel extends PureComponent<PieArcLabelProps> {
    static defaultProps: Partial<PieArcLabelProps>;
    render(): JSX.Element;
}
