/**
 * 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 { StandardTextValue } from './StandardTextValue';
/**
 *
 * @export
 * @interface StandardTextCatalog
 */
export interface StandardTextCatalog {
    /**
     *
     * @type {Array<StandardTextValue>}
     * @memberof StandardTextCatalog
     */
    values?: Array<StandardTextValue>;
}
/**
 * Check if a given object implements the StandardTextCatalog interface.
 */
export declare function instanceOfStandardTextCatalog(value: object): boolean;
export declare function StandardTextCatalogFromJSON(json: any): StandardTextCatalog;
export declare function StandardTextCatalogFromJSONTyped(json: any, ignoreDiscriminator: boolean): StandardTextCatalog;
export declare function StandardTextCatalogToJSON(value?: StandardTextCatalog | null): any;
