export declare const DatasetGroupDomain: {
    readonly Ecommerce: "ECOMMERCE";
    readonly VideoOnDemand: "VIDEO_ON_DEMAND";
};
/**
 * The domain of a Domain dataset group.
 */
export type DatasetGroupDomain = (typeof DatasetGroupDomain)[keyof typeof DatasetGroupDomain];
export declare const DatasetType: {
    readonly Interactions: "Interactions";
    readonly Items: "Items";
    readonly Users: "Users";
};
/**
 * The type of dataset
 */
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
export declare const SchemaDomain: {
    readonly Ecommerce: "ECOMMERCE";
    readonly VideoOnDemand: "VIDEO_ON_DEMAND";
};
/**
 * The domain of a Domain dataset group.
 */
export type SchemaDomain = (typeof SchemaDomain)[keyof typeof SchemaDomain];
export declare const SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesType: {
    readonly Maximize: "Maximize";
    readonly Minimize: "Minimize";
};
/**
 * The type of the metric. Valid values are Maximize and Minimize.
 */
export type SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesType = (typeof SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesType)[keyof typeof SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesType];
