/**
 * 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.
 */
/**
 *
 * @export
 */
export declare const DatabaseLoadMethod: {
    readonly Eager: "EAGER";
    readonly Lazy: "LAZY";
    readonly Reference: "REFERENCE";
};
export type DatabaseLoadMethod = typeof DatabaseLoadMethod[keyof typeof DatabaseLoadMethod];
export declare function DatabaseLoadMethodFromJSON(json: any): DatabaseLoadMethod;
export declare function DatabaseLoadMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): DatabaseLoadMethod;
export declare function DatabaseLoadMethodToJSON(value?: DatabaseLoadMethod | null): any;
