/// <reference types="google.maps" />
export interface AddressName {
    long_name: string;
    short_name: string;
}
export declare const makeAddress: (place: google.maps.places.PlaceResult) => {
    street: string;
    city: string;
    state: string;
    postal_code: string;
    lat: number;
    lng: number;
    formatted_address: string | undefined;
} | null;
