/**
 * KubeVirt API
 * This is KubeVirt API an add-on for Kubernetes.
 *
 * The version of the OpenAPI document: 1.0.0
 * Contact: kubevirt-dev@googlegroups.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { K8sIoApimachineryPkgApisMetaV1ObjectMeta, V1beta1VirtualMachineInstancetypeSpec } from './';
/**
 * VirtualMachineClusterInstancetype is a cluster scoped version of VirtualMachineInstancetype resource.
 * @export
 * @interface V1beta1VirtualMachineClusterInstancetype
 */
export interface V1beta1VirtualMachineClusterInstancetype {
    /**
     * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
     * @type {string}
     * @memberof V1beta1VirtualMachineClusterInstancetype
     */
    apiVersion?: string;
    /**
     * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
     * @type {string}
     * @memberof V1beta1VirtualMachineClusterInstancetype
     */
    kind?: string;
    /**
     *
     * @type {K8sIoApimachineryPkgApisMetaV1ObjectMeta}
     * @memberof V1beta1VirtualMachineClusterInstancetype
     */
    metadata?: K8sIoApimachineryPkgApisMetaV1ObjectMeta;
    /**
     *
     * @type {V1beta1VirtualMachineInstancetypeSpec}
     * @memberof V1beta1VirtualMachineClusterInstancetype
     */
    spec: V1beta1VirtualMachineInstancetypeSpec;
}
export declare function V1beta1VirtualMachineClusterInstancetypeFromJSON(json: any): V1beta1VirtualMachineClusterInstancetype;
export declare function V1beta1VirtualMachineClusterInstancetypeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1VirtualMachineClusterInstancetype;
export declare function V1beta1VirtualMachineClusterInstancetypeToJSON(value?: V1beta1VirtualMachineClusterInstancetype | null): any;
