/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Location of the end-user on the earth specified by two numbers representing vertical and horizontal position */
export interface GeoLocation {
    /** Latitude measured in decimal degress */
    latitude?: string;
    /** Longitude measured in decimal degress */
    longitude?: string;
}
export declare const geoLocationSchema: Schema<GeoLocation>;
