/**
 * 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.
 */
import { IoK8sApiCoreV1NodeSelector, IoK8sApiResourceV1beta2DeviceAllocationResult } from './';
/**
 * AllocationResult contains attributes of an allocated resource.
 * @export
 * @interface IoK8sApiResourceV1beta2AllocationResult
 */
export interface IoK8sApiResourceV1beta2AllocationResult {
    /**
     *
     * @type {IoK8sApiResourceV1beta2DeviceAllocationResult}
     * @memberof IoK8sApiResourceV1beta2AllocationResult
     */
    devices?: IoK8sApiResourceV1beta2DeviceAllocationResult;
    /**
     *
     * @type {IoK8sApiCoreV1NodeSelector}
     * @memberof IoK8sApiResourceV1beta2AllocationResult
     */
    nodeSelector?: IoK8sApiCoreV1NodeSelector;
}
export declare function IoK8sApiResourceV1beta2AllocationResultFromJSON(json: any): IoK8sApiResourceV1beta2AllocationResult;
export declare function IoK8sApiResourceV1beta2AllocationResultFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiResourceV1beta2AllocationResult;
export declare function IoK8sApiResourceV1beta2AllocationResultToJSON(value?: IoK8sApiResourceV1beta2AllocationResult | null): any;
