/**
 * CWMS Data API
 * CWMS REST API for Data Retrieval
 *
 * The version of the OpenAPI document: 2.3.2-2025.03.19
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * TimeSeries extent information
 * @export
 * @interface Extents
 */
export interface Extents {
    /**
     * Earliest value in the time-series
     * @type {Date}
     * @memberof Extents
     */
    earliestTime?: Date;
    /**
     * Last update in the time-series
     * @type {Date}
     * @memberof Extents
     */
    lastUpdate?: Date;
    /**
     * Latest value in the time-series
     * @type {Date}
     * @memberof Extents
     */
    latestTime?: Date;
    /**
     * TimeSeries version to which this extent information applies
     * @type {Date}
     * @memberof Extents
     */
    versionTime?: Date;
}
/**
 * Check if a given object implements the Extents interface.
 */
export declare function instanceOfExtents(value: object): boolean;
export declare function ExtentsFromJSON(json: any): Extents;
export declare function ExtentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Extents;
export declare function ExtentsToJSON(value?: Extents | null): any;
