import React from 'react';
import type { RendererProps } from 'jamis-core';
import type { SparkLineSchema } from '../types';
interface SparkLineRendProps extends RendererProps, Omit<SparkLineSchema, 'type' | 'className'> {
}
export declare class SparkLineRenderer extends React.Component<SparkLineRendProps> {
    handleClick(e: React.MouseEvent, ctx: any): void;
    render(): JSX.Element;
}
export {};
