import type { Lookups } from '../models';
import { HttpBackend } from '../helpers';
/**
 * API client to make requests to the Lookup API.
 *
 * @public
 */
export declare class LookupClient {
    private readonly baseUrl;
    private readonly backend;
    constructor(baseUrl: string, backend?: HttpBackend);
    /**
     * Gets all the lookups.
     * @param customerId - Your customer id.
     * @param language - The language to request.
     */
    getLookups(customerId: string, language: string): Promise<Lookups>;
}
