import { SerializedData } from '../serialization/json';
export interface MetadataTaxonomyAncestor {
    /**
     * A unique identifier of the metadata taxonomy node. */
    readonly id?: string;
    /**
     * The display name of the metadata taxonomy node. */
    readonly displayName?: string;
    /**
     * An index of the level to which the node belongs. */
    readonly level?: number;
    readonly rawData?: SerializedData;
}
export declare function serializeMetadataTaxonomyAncestor(val: MetadataTaxonomyAncestor): SerializedData;
export declare function deserializeMetadataTaxonomyAncestor(val: SerializedData): MetadataTaxonomyAncestor;
//# sourceMappingURL=metadataTaxonomyAncestor.d.ts.map