import { AdaptableStyle } from '../../../types';
/**
 * Defines how a given Column in AdapTable should be highlighted
 */
export interface ColumnHighlightInfo {
    /**
     * Id of Column being highlighted
     */
    columnId: string;
    /**
     * Time after which Column should be unhighlighted
     */
    timeout?: number;
    /**
     * Adaptable Style to use in the Column Highlight
     */
    highlightStyle: AdaptableStyle;
}
