/**
 * 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.
 */
import type { CwmsId } from './CwmsId';
import type { StreamNode } from './StreamNode';
/**
 *
 * @export
 * @interface StreamLocationNode
 */
export interface StreamLocationNode {
    /**
     *
     * @type {CwmsId}
     * @memberof StreamLocationNode
     */
    id: CwmsId;
    /**
     *
     * @type {StreamNode}
     * @memberof StreamLocationNode
     */
    streamNode: StreamNode;
}
/**
 * Check if a given object implements the StreamLocationNode interface.
 */
export declare function instanceOfStreamLocationNode(value: object): boolean;
export declare function StreamLocationNodeFromJSON(json: any): StreamLocationNode;
export declare function StreamLocationNodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamLocationNode;
export declare function StreamLocationNodeToJSON(value?: StreamLocationNode | null): any;
