/**
 * 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.
 */
/**
 * ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.
 * @export
 * @interface IoK8sApiResourceV1alpha3ResourceClaimConsumerReference
 */
export interface IoK8sApiResourceV1alpha3ResourceClaimConsumerReference {
    /**
     * APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.
     * @type {string}
     * @memberof IoK8sApiResourceV1alpha3ResourceClaimConsumerReference
     */
    apiGroup?: string;
    /**
     * Name is the name of resource being referenced.
     * @type {string}
     * @memberof IoK8sApiResourceV1alpha3ResourceClaimConsumerReference
     */
    name: string;
    /**
     * Resource is the type of resource being referenced, for example "pods".
     * @type {string}
     * @memberof IoK8sApiResourceV1alpha3ResourceClaimConsumerReference
     */
    resource: string;
    /**
     * UID identifies exactly one incarnation of the resource.
     * @type {string}
     * @memberof IoK8sApiResourceV1alpha3ResourceClaimConsumerReference
     */
    uid: string;
}
export declare function IoK8sApiResourceV1alpha3ResourceClaimConsumerReferenceFromJSON(json: any): IoK8sApiResourceV1alpha3ResourceClaimConsumerReference;
export declare function IoK8sApiResourceV1alpha3ResourceClaimConsumerReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiResourceV1alpha3ResourceClaimConsumerReference;
export declare function IoK8sApiResourceV1alpha3ResourceClaimConsumerReferenceToJSON(value?: IoK8sApiResourceV1alpha3ResourceClaimConsumerReference | null): any;
