import { DuetColor } from "../../common-types"; export declare class DuetShareChartItem { element: HTMLElement; /** * The value of the item. */ value: number; /** * The color to use in the graph given as a Duet color token. If left out, the Share chart picks a color from a default set. */ color: DuetColor; render(): any; }