/// import * as Promise from 'bluebird'; import { Intent } from '../types/bot'; export interface Topics { people: Array; places: Array; } export declare function grabTopics(text: string): Promise; export declare type locationMap = { [s: string]: { [s: string]: Array; }; }; export declare function locatonExtractor(text: string): any; export declare function getLocationConfidence(text: string, searchLocation: string): number;