export declare const TrainingDatasetColumnType: {
    readonly UserId: "USER_ID";
    readonly ItemId: "ITEM_ID";
    readonly Timestamp: "TIMESTAMP";
    readonly CategoricalFeature: "CATEGORICAL_FEATURE";
    readonly NumericalFeature: "NUMERICAL_FEATURE";
};
export type TrainingDatasetColumnType = (typeof TrainingDatasetColumnType)[keyof typeof TrainingDatasetColumnType];
export declare const TrainingDatasetDatasetType: {
    readonly Interactions: "INTERACTIONS";
};
export type TrainingDatasetDatasetType = (typeof TrainingDatasetDatasetType)[keyof typeof TrainingDatasetDatasetType];
export declare const TrainingDatasetStatus: {
    readonly Active: "ACTIVE";
};
export type TrainingDatasetStatus = (typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
