export declare class Location {
    /**
     * Unique identifier for the location.
     */
    id?: string;
    /**
     * Name of the location.
     */
    locationName?: string;
    /**
     * Version provided by the user.
     */
    version?: Version;
    [key: string]: any;
}
export declare class Version {
    /**
     * Unique identifier for the version.
     */
    id: string;
    /**
     * Name of the version.
     */
    name: string;
}
