/**
 * Defines the selection behavior of the AnalyticalTable.
 */
export declare enum AnalyticalTableSelectionBehavior {
    /**
     * A selection column is rendered along with the normal columns. The whole row is selectable.
     */
    Row = "Row",
    /**
     * No selection column is rendered along with the normal columns. The whole row is selectable.
     */
    RowOnly = "RowOnly",
    /**
     * The row is only selectable by clicking on the corresponding field in the selection column.
     */
    RowSelector = "RowSelector"
}
