export declare const TaggableResourceType: { readonly BATCH_PREDICTION: "BatchPrediction"; readonly DATASOURCE: "DataSource"; readonly EVALUATION: "Evaluation"; readonly ML_MODEL: "MLModel"; }; export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType]; export declare const Algorithm: { readonly SGD: "sgd"; }; export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm]; export declare const MLModelType: { readonly BINARY: "BINARY"; readonly MULTICLASS: "MULTICLASS"; readonly REGRESSION: "REGRESSION"; }; export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType]; export declare const RealtimeEndpointStatus: { readonly FAILED: "FAILED"; readonly NONE: "NONE"; readonly READY: "READY"; readonly UPDATING: "UPDATING"; }; export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus]; export declare const BatchPredictionFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATASOURCE_ID: "DataSourceId"; readonly DATA_URI: "DataURI"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_ID: "MLModelId"; readonly NAME: "Name"; readonly STATUS: "Status"; }; export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable]; export declare const SortOrder: { readonly ASC: "asc"; readonly DSC: "dsc"; }; export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; export declare const EntityStatus: { readonly COMPLETED: "COMPLETED"; readonly DELETED: "DELETED"; readonly FAILED: "FAILED"; readonly INPROGRESS: "INPROGRESS"; readonly PENDING: "PENDING"; }; export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus]; export declare const DataSourceFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATA_URI: "DataLocationS3"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly NAME: "Name"; readonly STATUS: "Status"; }; export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable]; export declare const EvaluationFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATASOURCE_ID: "DataSourceId"; readonly DATA_URI: "DataURI"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_ID: "MLModelId"; readonly NAME: "Name"; readonly STATUS: "Status"; }; export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable]; export declare const MLModelFilterVariable: { readonly ALGORITHM: "Algorithm"; readonly CREATED_AT: "CreatedAt"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_TYPE: "MLModelType"; readonly NAME: "Name"; readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus"; readonly STATUS: "Status"; readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId"; readonly TRAINING_DATA_URI: "TrainingDataURI"; }; export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable]; export declare const DetailsAttributes: { readonly ALGORITHM: "Algorithm"; readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType"; }; export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];