/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: unversioned
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { IoK8sApimachineryPkgApisMetaV1LabelSelector } from './';
/**
 * MetricIdentifier defines the name and optionally selector for a metric
 * @export
 * @interface IoK8sApiAutoscalingV2MetricIdentifier
 */
export interface IoK8sApiAutoscalingV2MetricIdentifier {
    /**
     * name is the name of the given metric
     * @type {string}
     * @memberof IoK8sApiAutoscalingV2MetricIdentifier
     */
    name: string;
    /**
     *
     * @type {IoK8sApimachineryPkgApisMetaV1LabelSelector}
     * @memberof IoK8sApiAutoscalingV2MetricIdentifier
     */
    selector?: IoK8sApimachineryPkgApisMetaV1LabelSelector;
}
export declare function IoK8sApiAutoscalingV2MetricIdentifierFromJSON(json: any): IoK8sApiAutoscalingV2MetricIdentifier;
export declare function IoK8sApiAutoscalingV2MetricIdentifierFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV2MetricIdentifier;
export declare function IoK8sApiAutoscalingV2MetricIdentifierToJSON(value?: IoK8sApiAutoscalingV2MetricIdentifier | null): any;
