/**
 * 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 { CwmsId } from './CwmsId';
import type { LocationsWithProjectKind } from './LocationsWithProjectKind';
/**
 *
 * @export
 * @interface ProjectChildLocations
 */
export interface ProjectChildLocations {
    /**
     *
     * @type {CwmsId}
     * @memberof ProjectChildLocations
     */
    projectId?: CwmsId;
    /**
     *
     * @type {Array<LocationsWithProjectKind>}
     * @memberof ProjectChildLocations
     */
    locationsByKind?: Array<LocationsWithProjectKind>;
}
/**
 * Check if a given object implements the ProjectChildLocations interface.
 */
export declare function instanceOfProjectChildLocations(value: object): boolean;
export declare function ProjectChildLocationsFromJSON(json: any): ProjectChildLocations;
export declare function ProjectChildLocationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectChildLocations;
export declare function ProjectChildLocationsToJSON(value?: ProjectChildLocations | null): any;
