import { AxiosInstance } from "axios"; import { Resource } from "../Resource"; export type SearchCompanyRequest = { companyName: string; incorporationCountry: string; }; export type SearchAddressRequest = { line: string; postalCode: string; country: string; }; export declare class Lookups extends Resource<{}> { constructor(axiosInstance: AxiosInstance); searchCompany(searchCompanyRequest: SearchCompanyRequest): Promise; getCompany(id: string): Promise; searchAddress(searchAddressRequest: SearchAddressRequest): Promise; }