/**
 * 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.
 */
/**
 * Represents the start and end times of an extent
 * @export
 * @interface TimeExtents
 */
export interface TimeExtents {
    /**
     * Earliest value in the timeseries
     * @type {Date}
     * @memberof TimeExtents
     */
    earliestTime?: Date;
    /**
     * Latest value in the timeseries
     * @type {Date}
     * @memberof TimeExtents
     */
    latestTime?: Date;
}
export declare function TimeExtentsFromJSON(json: any): TimeExtents;
export declare function TimeExtentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeExtents;
export declare function TimeExtentsToJSON(value?: TimeExtents | null): any;
