export interface Place {
    name: string;
    longitude: string;
    latitude: string;
    shortName: string;
}
export declare function getPlacesFromMapboxClient(publicKey: string): (query: string) => Promise<Place[]>;
