import React from "react";
import { RectProps, TextProps } from "react-native-svg";
export type LegendItemProps = {
    baseLegendItemX: number;
    index: number;
    legendOffset: number;
    legendText: string;
    iconColor: RectProps["fill"];
    labelProps: TextProps;
};
export declare const LegendItem: (props: LegendItemProps) => React.JSX.Element;
//# sourceMappingURL=LegendItem.d.ts.map