///
import { SeriesType } from './model';
export interface SeriesLabelProps {
seriesType: SeriesType;
x?: number;
y?: number;
color?: string;
value?: any;
outlierValue?: any;
}
export declare function SeriesLabel(props: SeriesLabelProps): JSX.Element;