export function Location(props: any): any;
export namespace Location {
    export { serialize };
}
declare function serialize(locationProps: any): {
    location: {
        lat: any;
        long: any;
    };
};
export {};
