/**
 * A class to work with drag and drop grid infrastructure.
 */
export declare interface DragModel {
	/**
	 * Flag that indicates drag in drop is perfoming.
	 * Usually is used inside the grid to apply some custom styles.
	 */
	isActive?: boolean;
}
