import { IMeetingLocation } from "../../types/location.types";
/**
 * Get meeting locations using outlook.office365.com/SchedulingB2/api/v1.0/me/findmeetinglocations
 * @param query The term to search for
 * @returns An array of meeting locations (https://learn.microsoft.com/en-us/graph/api/resources/location?view=graph-rest-1.0) sorted by relevance score
 */
export declare function FindMeetingLocations(query: string): Promise<IMeetingLocation[]>;
/**
 * Resolve meeting locations using outlook.office365.com/SchedulingB2/api/v1.0/me/findmeetinglocations
 * @param bingUri The LocationUri for the meeting location
 * @returns A single meeting location
 */
export declare function ResolveLocationFromBingUri(bingUri: string): Promise<IMeetingLocation>;
