/**
 * 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 { LocationCatalogEntry } from './LocationCatalogEntry';
import type { TimeSeriesCatalogEntry } from './TimeSeriesCatalogEntry';
/**
 * @type CatalogEntry
 *
 * @export
 */
export type CatalogEntry = LocationCatalogEntry | TimeSeriesCatalogEntry;
export declare function CatalogEntryFromJSON(json: any): CatalogEntry;
export declare function CatalogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogEntry;
export declare function CatalogEntryToJSON(value?: CatalogEntry | null): any;
