/**
 * 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 { V1beta1DeviceClassConfiguration } from '../models/V1beta1DeviceClassConfiguration.js';
import { V1beta1DeviceSelector } from '../models/V1beta1DeviceSelector.js';
/**
* DeviceClassSpec is used in a [DeviceClass] to define what can be allocated and how to configure it.
*/
export declare class V1beta1DeviceClassSpec {
    /**
    * Config defines configuration parameters that apply to each device that is claimed via this class. Some classses may potentially be satisfied by multiple drivers, so each instance of a vendor configuration applies to exactly one driver.  They are passed to the driver, but are not considered while allocating the claim.
    */
    'config'?: Array<V1beta1DeviceClassConfiguration>;
    /**
    * Each selector must be satisfied by a device which is claimed via this class.
    */
    'selectors'?: Array<V1beta1DeviceSelector>;
    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();
}
