/**
 * 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 { K8sIoApimachineryPkgApisMetaV1ListMeta, V1KubeVirt } from './';
/**
 * KubeVirtList is a list of KubeVirts
 * @export
 * @interface V1KubeVirtList
 */
export interface V1KubeVirtList {
    /**
     * 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 V1KubeVirtList
     */
    apiVersion?: string;
    /**
     *
     * @type {Array<V1KubeVirt>}
     * @memberof V1KubeVirtList
     */
    items: Array<V1KubeVirt>;
    /**
     * 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 V1KubeVirtList
     */
    kind?: string;
    /**
     *
     * @type {K8sIoApimachineryPkgApisMetaV1ListMeta}
     * @memberof V1KubeVirtList
     */
    metadata?: K8sIoApimachineryPkgApisMetaV1ListMeta;
}
export declare function V1KubeVirtListFromJSON(json: any): V1KubeVirtList;
export declare function V1KubeVirtListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirtList;
export declare function V1KubeVirtListToJSON(value?: V1KubeVirtList | null): any;
