import { Type } from "./type";
/**
 * Enumerates possible display modes for section headers.
 */
export declare enum DataSourceSectionHeaderDisplayMode {
    /**
     * Each group is preceded by a single section header that combines multiple groups into one.
     */
    Combined = 0,
    /**
     * Each group may be preceded by multiple section headers, one for each group.
     */
    Split = 1
}
/**
 * @hidden
 */
export declare let DataSourceSectionHeaderDisplayMode_$type: Type;
