/**
 * 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 { StreamLocationNode } from './StreamLocationNode';
/**
 *
 * @export
 * @interface StreamLocation
 */
export interface StreamLocation {
    /**
     *
     * @type {StreamLocationNode}
     * @memberof StreamLocation
     */
    streamLocationNode: StreamLocationNode;
    /**
     *
     * @type {number}
     * @memberof StreamLocation
     */
    publishedStation?: number;
    /**
     *
     * @type {number}
     * @memberof StreamLocation
     */
    navigationStation?: number;
    /**
     *
     * @type {number}
     * @memberof StreamLocation
     */
    lowestMeasurableStage?: number;
    /**
     *
     * @type {number}
     * @memberof StreamLocation
     */
    totalDrainageArea?: number;
    /**
     *
     * @type {number}
     * @memberof StreamLocation
     */
    ungagedDrainageArea?: number;
    /**
     *
     * @type {string}
     * @memberof StreamLocation
     */
    areaUnits?: string;
    /**
     *
     * @type {string}
     * @memberof StreamLocation
     */
    stageUnits?: string;
}
export declare function StreamLocationFromJSON(json: any): StreamLocation;
export declare function StreamLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamLocation;
export declare function StreamLocationToJSON(value?: StreamLocation | null): any;
