/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { VolumeStat } from './'; /** * * @export * @interface VolumeStats */ export interface VolumeStats { /** * * @type {Array} * @memberof VolumeStats */ usage: Array; } export declare function VolumeStatsFromJSON(json: any): VolumeStats; export declare function VolumeStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): VolumeStats; export declare function VolumeStatsToJSON(value?: VolumeStats | null): any;