@grafana/ui
Version:
Grafana Components Library
7 lines (6 loc) • 395 B
TypeScript
import { type JSX } from 'react';
import { type VizLegendTableProps } from './types';
/**
* @internal
*/
export declare const VizLegendTable: <T extends unknown>({ items, sortBy: sortKey, sortDesc, itemRenderer, className, onToggleSort, onLabelClick, onLabelMouseOver, onLabelMouseOut, readonly, isSortable, limit, filterAction, placement, overflow, }: VizLegendTableProps<T>) => JSX.Element;