/** * OS names search find by query * @param {string} query - the search term * @param {string} apiKey - the OS api key */ export function find(query: string, apiKey: string): Promise; /** * OS names search nearest by E/N * @param {number} easting - the easting * @param {number} northing - the northing * @param {string} apiKey - the OS api key */ export function nearest(easting: number, northing: number, apiKey: string): Promise; import type { OsNamesFindResponse } from '~/src/server/plugins/map/types.js';