import { SerializedData } from '../serialization/json.js';
export interface MetadataTaxonomyLevel {
    /**
     * The display name of the level as it is shown to the user. */
    readonly displayName?: string;
    /**
     * A description of the level. */
    readonly description?: string;
    /**
     * An index of the level within the taxonomy. Levels are indexed starting from 1. */
    readonly level?: number;
    readonly rawData?: SerializedData;
}
export declare function serializeMetadataTaxonomyLevel(val: MetadataTaxonomyLevel): SerializedData;
export declare function deserializeMetadataTaxonomyLevel(val: SerializedData): MetadataTaxonomyLevel;
//# sourceMappingURL=metadataTaxonomyLevel.d.ts.map