/**
 * 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.
 */
/**
 * A representation of a state
 * @export
 * @interface State
 */
export interface State {
    /**
     *
     * @type {string}
     * @memberof State
     */
    stateInitial: string;
    /**
     *
     * @type {string}
     * @memberof State
     */
    name: string;
}
export declare function StateFromJSON(json: any): State;
export declare function StateFromJSONTyped(json: any, ignoreDiscriminator: boolean): State;
export declare function StateToJSON(value?: State | null): any;
