import { type ChartFillType } from "../../coloring/types.js"; import { type ISeriesItem, type ItemBorderRadiusPredicate } from "../types.js"; export interface IRowLegendIcoButton { isVisible: boolean; isActive: boolean; onIconClick: () => void; dialogId: string; triggerId: string; } export declare function RowLegendIcoButton({ isVisible, isActive, onIconClick, dialogId, triggerId }: IRowLegendIcoButton): import("react/jsx-runtime").JSX.Element | null; export interface IRowLegendProps { legendLabel?: string; maxRowsCount?: number; series: ISeriesItem[]; enableBorderRadius?: boolean | ItemBorderRadiusPredicate; onDialogIconClick: () => void; onLegendItemClick: (item: ISeriesItem) => void; isActive?: boolean; dialogId: string; triggerId: string; chartFill?: ChartFillType; } export declare function RowLegend({ series, maxRowsCount, legendLabel, enableBorderRadius, onDialogIconClick, onLegendItemClick, dialogId, triggerId, isActive, chartFill }: IRowLegendProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=RowLegend.d.ts.map