export const BENCHMARK_METRIC_GOAL: "benchmark_metric"; export const SLIPS_TO_SLIPS_GOAL: "slips_to_slips_average"; export const BOTTOM_TO_SLIPS_GOAL: "bottom_to_slips_average"; export const WEIGHT_TO_WEIGHT_GOAL: "weight_to_weight_average"; export const SLIPS_TO_BOTTOM_GOAL: "slips_to_bottom_average"; export const CUMULATIVE_TORTUOSITY_GOAL: "cumulative_tortuosity_goal"; export const STAGES_PER_DAY_GOAL: "stages_per_day"; export const PUMPING_HOURS_PER_DAY_GOAL: "pumping_hours_per_day"; export const BBLS_PER_DAY_GOAL: "bbls_per_day"; export const LBS_PROPPANT_PER_DAY_GOAL: "lbs_proppant_per_day"; export const FRAC_SWAP_OVER_GOAL: "frac_swap_over"; export const WIRELINE_SWAP_OVER_GOAL: "wireline_swap_over"; export const OPTIMAL_PRESSURE_WINDOW_MIN_GOAL: "optimal_pressure_window_min"; export const OPTIMAL_PRESSURE_WINDOW_MAX_GOAL: "optimal_pressure_window_max"; export const DRILLING_EFFICIENCY_GOALS: ({ label: string; key: string; to: string; customConvert: typeof import("~/utils/metrics").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; }; })[]; export const CONNECTIONS_GOALS: { label: string; key: string; to: string; unitType: string; from: string; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; }[]; export const COST_GOALS: ({ 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; })[]; export const ENGINEERING_GOALS: { label: string; key: string; convertForMultiRigs: ({ sumVal, number }: { sumVal: any; number: any; }) => number; category: { label: string; value: string; }; }[]; export const COMPLETION_GOALS: { label: string; key: string; }[]; export namespace GOAL_TYPES_DICT { namespace company { let label: string; let key: string; } namespace program { let label_1: string; export { label_1 as label }; let key_1: string; export { key_1 as key }; } } //# sourceMappingURL=goals.d.ts.map