/**
 * Represents a single legend item in IntelligentTable.
 *
 * @property {string | undefined} label - The label text for the legend.
 * @property {string | undefined} color - The color associated with the legend.
 */
export type IntelligentTableLegendType = {
    label: string | undefined;
    color: string | undefined;
};
