/** * @module botbuilder-ai */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export interface GeographyV2 { /** * Type of location. */ type: GeographyV2Type; /** * Name of location. */ location: string; } export declare enum GeographyV2Type { POI = "poi", City = "city", CountryRegion = "countryRegion", Continent = "continent", State = "state" } //# sourceMappingURL=geographyV2.d.ts.map