import { FC } from 'react'; import { Serie } from '@nivo/line'; export interface MetricProps { /** * An object as expect by Nivo's line chart. For more info look at * the line chart stories. */ data: Serie[]; /** * The value of the metric. */ metric: number | string; } export interface VariantProps { /** * An object as expect by Nivo's line chart. For more info look at * the line chart stories. */ data: Serie[]; } export declare const Metric: FC;