import { AdaptableStyle } from '../../../types';
/**
 * Define how to highlight a Row
 */
export interface RowHighlightInfo {
    /**
     * Primary key value for the row to be highlighted
     */
    primaryKeyValue: any;
    /**
     * Timeout after which Row should be unhighlighted
     */
    timeout?: number;
    /**
     * Highlight style
     */
    highlightStyle: AdaptableStyle;
}
