import type { VariantShape } from '../../../../core/components/shape/type.js'; export declare const LINE_CHART_ICON_SHAPE = "line-chart"; export declare const BAR_CHART_ICON_SHAPE = "bar-chart"; export declare const RECT_CHART_ICON_SHAPE = "rect-chart"; export declare const AREA_CHART_ICON_SHAPE = "area-chart"; interface LegendIconProps { shape: VariantShape | typeof LINE_CHART_ICON_SHAPE | typeof BAR_CHART_ICON_SHAPE | typeof RECT_CHART_ICON_SHAPE | typeof AREA_CHART_ICON_SHAPE; color: string; } export declare const XYLegendIcon: ({ color, shape }: LegendIconProps) => import("react/jsx-runtime").JSX.Element; export {};