/** * Copyright (c) 2023 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import ListResponseInterface, { IndexOptions } from '../types'; import Addresses from './addresses'; export default class Search { protected static adapter: any; static single(postal_code: string, config?: IndexOptions): Promise>; static bulk(postal_codes: string[], config?: IndexOptions): Promise>; }