import type { WithNormalizedProps } from "../../global"; export interface LegendItem { name: string; value: number | string | undefined; } export interface ChartLegendInput { item: LegendItem[]; } export interface Input extends WithNormalizedProps { } declare class ChartLegend extends Marko.Component { } export default ChartLegend;