export namespace FILTERS { let formation: string; let stringDesign: string; let program: string; let basin: string; let county: string; let area: string; } export const FILTERS_LIST: { key: string; title: string; size: number; renderValue: (length: any) => string; }[]; export const METRICS_LIST: ({ label: string; key: string; isBiggestBest: boolean; unitType: string; from: string; convertForMultiRigs: ({ maxVal }: { maxVal: any; }) => any; category: { label: string; value: string; }; } | { label: string; key: string; unitType: string; from: string; convertForMultiRigs: ({ sumVal }: { sumVal: any; }) => any; category: { label: string; value: string; }; } | { label: string; key: string; to: string; customConvert: typeof metricsUtils.convertPercentageMetrics; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; } | { label: string; key: string; unitType: string; from: string; isBiggestBest: boolean; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; } | { label: string; key: string; to: string; unitType: string; convertForMultiRigs: ({ sumVal }: { sumVal: any; }) => any; category: { label: string; value: string; }; } | { label: string; key: string; to: string; unitType: string; from: string; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; } | { label: string; labelFunc: () => string; key: string; customConvert: (value: any) => number; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; } | { label: string; key: string; unitType: string; from: string; to: string; convertForMultiRigs: ({ maxVal }: { maxVal: any; }) => any; category: { label: string; value: string; }; })[]; export const METRICS_KEYS: string[]; export const TABLE_COLUMNS: ({ label: string; key: string; minWidth: number; width?: undefined; } | { label: string; key: string; width: number; minWidth?: undefined; })[]; export namespace SETTINGS_COLUMN { let key: string; let label: string; let width: number; } export const MAX_METRICS_COUNT: 2; export namespace DEFAULT_SETTINGS { let radius: number; let filters: {}; namespace sortInfo { let key_1: string; export { key_1 as key }; export let direction: number; } } import { metricsUtils } from '~/utils'; //# sourceMappingURL=constants.d.ts.map