/**
 * CWMS Data API
 * CWMS REST API for Data Retrieval
 *
 * The version of the OpenAPI document: 2.4.0-2026.3.16
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CwmsId } from './CwmsId';
/**
 *
 * @export
 * @interface RatedOutputValues
 */
export interface RatedOutputValues {
    /**
     *
     * @type {CwmsId}
     * @memberof RatedOutputValues
     */
    ratingId: CwmsId;
    /**
     * The unit of the rated output data
     * @type {string}
     * @memberof RatedOutputValues
     */
    unit: string;
    /**
     *
     * @type {Array<number>}
     * @memberof RatedOutputValues
     */
    values: Array<number>;
}
export declare function RatedOutputValuesFromJSON(json: any): RatedOutputValues;
export declare function RatedOutputValuesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatedOutputValues;
export declare function RatedOutputValuesToJSON(value?: RatedOutputValues | null): any;
