/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * OpenAPI spec version: v1
 */
import type { PackUidValuesAnnotations } from './packUidValuesAnnotations';
import type { PackDependencyMeta } from './packDependencyMeta';
import type { PackPreset } from './packPreset';
import type { PackSchema } from './packSchema';
import type { PackTemplate } from './packTemplate';
export type PackUidValues = {
    /** Pack annotations is used to allow pack to add more arbitrary configurations */
    annotations?: PackUidValuesAnnotations;
    /** Pack dependencies array */
    dependencies?: PackDependencyMeta[];
    /** Pack uid */
    packUid?: string;
    /** Pack presets are the set of configurations applied on user selection of presets */
    presets?: PackPreset[];
    /** Readme describes the documentation of the specified pack */
    readme?: string;
    /** Pack schema contains constraints such as data type, format, hints for the pack values */
    schema?: PackSchema[];
    template?: PackTemplate;
    /** Pack values represents the values.yaml used as input parameters */
    values?: string;
};
//# sourceMappingURL=packUidValues.d.ts.map