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