export declare class Common {
    key: string;
    private apikey;
    constructor(key: string);
    search(terms: string, countryISO?: string, types?: string): Promise<any[]>;
    getPlaceById(placeId: any): Promise<any>;
    private handleErrors(response);
}
