export declare const DEFAULT_SERIES_LIMIT = 10000; export declare const DEFAULT_CATEGORIES_LIMIT = 10000; export declare const DEFAULT_DATA_POINTS_LIMIT = 10000; export declare const PIE_CHART_LIMIT = 10000; export declare const HEATMAP_DATA_POINTS_LIMIT = 10000; export declare const SANKEY_CHART_NODE_LIMIT = 10000; export declare const SANKEY_CHART_DATA_POINT_LIMIT = 10000; export declare const WATERFALL_CHART_DATA_POINT_LIMIT = 10000; /** * Soft limits are used for checking whether the chart should be recommended to be filtered out * due to too many data points. * * Values of soft limits used to be hard limits of the UI. They were changed to soft limits * and hard limits are now set to disable the charts when backend limits are still not hit. */ export declare const SOFT_DEFAULT_SERIES_LIMIT = 1000; export declare const SOFT_DEFAULT_CATEGORIES_LIMIT = 3000; export declare const SOFT_DEFAULT_DATA_POINTS_LIMIT = 2000; export declare const SOFT_PIE_CHART_LIMIT = 20; export declare const SOFT_SANKEY_CHART_NODE_LIMIT = 50; export declare const SOFT_SANKEY_CHART_DATA_POINT_LIMIT = 500; export declare const SOFT_WATERFALL_CHART_DATA_POINT_LIMIT = 400; //# sourceMappingURL=limits.d.ts.map