import { Type } from "igniteui-angular-core"; /** * Indicates the selection mode to use for the grid. */ export declare enum ListPanelSelectionBehavior { /** * Rows and cells are selected using a toggleable behavior. Modifier selection is ignored (CTRL and SHIFT). */ Toggle = 0, /** * Only one row or cell is selected at a time and modifier keys are required to multi-select them. */ ModifierBased = 1 } /** * @hidden */ export declare let ListPanelSelectionBehavior_$type: Type;