/** * Generates the URL for the GetLocalBoqProxy endpoint. * @param {string} placeId - The CID of the place. * @param {1|2|3|4} sortOrder - The sort order (1: Most Relevant, 2: Newest, 3: Highest Rating, 4: Lowest Rating). * @param {string} paginationToken - The base64 pagination token. * @returns {string} The full URL. */ export default function getBoqUrl(placeId: string, sortOrder: 1 | 2 | 3 | 4, paginationToken?: string): string;