import { AdaptableStyle } from '../../../types';
/**
 * Defines how to highlight a set of Rows
 */
export interface RowsHighlightInfo {
    /**
     * Primary key valuse for the rows to be highlighted
     */
    primaryKeyValues: any[];
    /**
     * Timeout after which the highlight is removed
     */
    timeout?: number;
    /**
     * Highlight style
     */
    highlightStyle: AdaptableStyle;
}
