/**
 * 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, V1KubeVirtSpec, V1KubeVirtStatus } from './';
/**
 * KubeVirt represents the object deploying all KubeVirt resources
 * @export
 * @interface V1KubeVirt
 */
export interface V1KubeVirt {
    /**
     * 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 V1KubeVirt
     */
    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 V1KubeVirt
     */
    kind?: string;
    /**
     *
     * @type {K8sIoApimachineryPkgApisMetaV1ObjectMeta}
     * @memberof V1KubeVirt
     */
    metadata?: K8sIoApimachineryPkgApisMetaV1ObjectMeta;
    /**
     *
     * @type {V1KubeVirtSpec}
     * @memberof V1KubeVirt
     */
    spec: V1KubeVirtSpec;
    /**
     *
     * @type {V1KubeVirtStatus}
     * @memberof V1KubeVirt
     */
    status?: V1KubeVirtStatus;
}
export declare function V1KubeVirtFromJSON(json: any): V1KubeVirt;
export declare function V1KubeVirtFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirt;
export declare function V1KubeVirtToJSON(value?: V1KubeVirt | null): any;
