export interface EsriWorkflowModelsRestLocation {
    geometryType?: EsriWorkflowModelsRestLocationGeometryTypeEnum;
    geometry?: string | null;
}
export declare enum EsriWorkflowModelsRestLocationGeometryTypeEnum {
    Multipoint = "Multipoint",
    Polyline = "Polyline",
    Polygon = "Polygon"
}
export declare function EsriWorkflowModelsRestLocationFromJSON(json: any): EsriWorkflowModelsRestLocation;
export declare function EsriWorkflowModelsRestLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowModelsRestLocation;
export declare function EsriWorkflowModelsRestLocationToJSON(value?: EsriWorkflowModelsRestLocation | null): any;
