import type { GetLocationQueryResponse } from './models.js'; import type { LocationQueryCreationResponse, SupportedLocationQueryCreationRequest } from './Queries/index.js'; interface LocationDivinerApiConfig { apiDomain: string; } declare class LocationDivinerApi { config: LocationDivinerApiConfig; constructor(config: LocationDivinerApiConfig); getLocationQuery(hash: string): Promise; postLocationQuery(request: SupportedLocationQueryCreationRequest): Promise; } export { LocationDivinerApi }; //# sourceMappingURL=LocationDivinerApi.d.ts.map