/**
 * 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 CwmsIdLocationKind
 */
export interface CwmsIdLocationKind {
    /**
     *
     * @type {string}
     * @memberof CwmsIdLocationKind
     */
    locationKindId?: string;
    /**
     *
     * @type {CwmsId}
     * @memberof CwmsIdLocationKind
     */
    locationId?: CwmsId;
}
export declare function CwmsIdLocationKindFromJSON(json: any): CwmsIdLocationKind;
export declare function CwmsIdLocationKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): CwmsIdLocationKind;
export declare function CwmsIdLocationKindToJSON(value?: CwmsIdLocationKind | null): any;
