import { Type } from "./type";
/**
 * Describes mode for displaying values in the data legend.
 */
export declare enum DataLegendLayoutMode {
    /**
     * Specifies a layout mode where values of series are placed in columns of a table
     */
    Table = 0,
    /**
     * Specifies a layout mode where values of series are stacked vertically below series title
     */
    Vertical = 1
}
/**
 * @hidden
 */
export declare let DataLegendLayoutMode_$type: Type;
