export declare const Operation: { readonly ADD: "ADD"; readonly DIVIDE: "DIVIDE"; readonly MULTIPLY: "MULTIPLY"; readonly SUBTRACT: "SUBTRACT"; }; export type Operation = (typeof Operation)[keyof typeof Operation]; export declare const OptimizationMetric: { readonly AverageWeightedQuantileLoss: "AverageWeightedQuantileLoss"; readonly MAPE: "MAPE"; readonly MASE: "MASE"; readonly RMSE: "RMSE"; readonly WAPE: "WAPE"; }; export type OptimizationMetric = (typeof OptimizationMetric)[keyof typeof OptimizationMetric]; export declare const DayOfWeek: { readonly FRIDAY: "FRIDAY"; readonly MONDAY: "MONDAY"; readonly SATURDAY: "SATURDAY"; readonly SUNDAY: "SUNDAY"; readonly THURSDAY: "THURSDAY"; readonly TUESDAY: "TUESDAY"; readonly WEDNESDAY: "WEDNESDAY"; }; export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]; export declare const Month: { readonly APRIL: "APRIL"; readonly AUGUST: "AUGUST"; readonly DECEMBER: "DECEMBER"; readonly FEBRUARY: "FEBRUARY"; readonly JANUARY: "JANUARY"; readonly JULY: "JULY"; readonly JUNE: "JUNE"; readonly MARCH: "MARCH"; readonly MAY: "MAY"; readonly NOVEMBER: "NOVEMBER"; readonly OCTOBER: "OCTOBER"; readonly SEPTEMBER: "SEPTEMBER"; }; export type Month = (typeof Month)[keyof typeof Month]; export declare const DatasetType: { readonly ITEM_METADATA: "ITEM_METADATA"; readonly RELATED_TIME_SERIES: "RELATED_TIME_SERIES"; readonly TARGET_TIME_SERIES: "TARGET_TIME_SERIES"; }; export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType]; export declare const Domain: { readonly CUSTOM: "CUSTOM"; readonly EC2_CAPACITY: "EC2_CAPACITY"; readonly INVENTORY_PLANNING: "INVENTORY_PLANNING"; readonly METRICS: "METRICS"; readonly RETAIL: "RETAIL"; readonly WEB_TRAFFIC: "WEB_TRAFFIC"; readonly WORK_FORCE: "WORK_FORCE"; }; export type Domain = (typeof Domain)[keyof typeof Domain]; export declare const AttributeType: { readonly FLOAT: "float"; readonly GEOLOCATION: "geolocation"; readonly INTEGER: "integer"; readonly STRING: "string"; readonly TIMESTAMP: "timestamp"; }; export type AttributeType = (typeof AttributeType)[keyof typeof AttributeType]; export declare const ImportMode: { readonly FULL: "FULL"; readonly INCREMENTAL: "INCREMENTAL"; }; export type ImportMode = (typeof ImportMode)[keyof typeof ImportMode]; export declare const TimePointGranularity: { readonly ALL: "ALL"; readonly SPECIFIC: "SPECIFIC"; }; export type TimePointGranularity = (typeof TimePointGranularity)[keyof typeof TimePointGranularity]; export declare const TimeSeriesGranularity: { readonly ALL: "ALL"; readonly SPECIFIC: "SPECIFIC"; }; export type TimeSeriesGranularity = (typeof TimeSeriesGranularity)[keyof typeof TimeSeriesGranularity]; export declare const AutoMLOverrideStrategy: { readonly AccuracyOptimized: "AccuracyOptimized"; readonly LatencyOptimized: "LatencyOptimized"; }; export type AutoMLOverrideStrategy = (typeof AutoMLOverrideStrategy)[keyof typeof AutoMLOverrideStrategy]; export declare const FeaturizationMethodName: { readonly filling: "filling"; }; export type FeaturizationMethodName = (typeof FeaturizationMethodName)[keyof typeof FeaturizationMethodName]; export declare const ScalingType: { readonly Auto: "Auto"; readonly Linear: "Linear"; readonly Logarithmic: "Logarithmic"; readonly ReverseLogarithmic: "ReverseLogarithmic"; }; export type ScalingType = (typeof ScalingType)[keyof typeof ScalingType]; export declare const Condition: { readonly EQUALS: "EQUALS"; readonly GREATER_THAN: "GREATER_THAN"; readonly LESS_THAN: "LESS_THAN"; readonly NOT_EQUALS: "NOT_EQUALS"; }; export type Condition = (typeof Condition)[keyof typeof Condition]; export declare const State: { readonly Active: "Active"; readonly Deleted: "Deleted"; }; export type State = (typeof State)[keyof typeof State]; export declare const EvaluationType: { readonly COMPUTED: "COMPUTED"; readonly SUMMARY: "SUMMARY"; }; export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType]; export declare const FilterConditionString: { readonly IS: "IS"; readonly IS_NOT: "IS_NOT"; }; export type FilterConditionString = (typeof FilterConditionString)[keyof typeof FilterConditionString];