export declare class UTMCoordinates {
    /**
    * UTM grid zone combination of the longitude zone (1 to 60) and the latitude band (C to X, excluding I and O).
    */
    "UTMZone": string;
    /**
    * X-coordinate of the Universal Transverse Mercator coordinate system.
    */
    "UTMEastward": string;
    /**
    * Y-coordinate of the Universal Transverse Mercator coordinate system.
    */
    "UTMNorthward": string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
