import React, { FormEvent } from 'react'; import { ContainerProps } from '../Container/Container'; import { Color } from '@harnessio/design-system'; export interface SparkChartProps extends ContainerProps { /** numerical data array to pass */ data: number[]; /** numerical data array to pass for second */ data2?: number[]; /** className to be appended to default className */ className?: string; /** onClick Event */ onClick?: (event: FormEvent) => void; /** custom fill color */ color?: Color; /** custom fill color */ color2?: Color; /** empty record height */ emptyHeight?: React.CSSProperties['height']; } export declare const SparkChart: React.FC;