/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: v1.32.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { V2ContainerResourceMetricStatus } from '../models/V2ContainerResourceMetricStatus.js';
import { V2ExternalMetricStatus } from '../models/V2ExternalMetricStatus.js';
import { V2ObjectMetricStatus } from '../models/V2ObjectMetricStatus.js';
import { V2PodsMetricStatus } from '../models/V2PodsMetricStatus.js';
import { V2ResourceMetricStatus } from '../models/V2ResourceMetricStatus.js';
/**
* MetricStatus describes the last-read state of a single metric.
*/
export declare class V2MetricStatus {
    'containerResource'?: V2ContainerResourceMetricStatus;
    'external'?: V2ExternalMetricStatus;
    'object'?: V2ObjectMetricStatus;
    'pods'?: V2PodsMetricStatus;
    'resource'?: V2ResourceMetricStatus;
    /**
    * type is the type of metric source.  It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.
    */
    'type': string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
