import { EntityLookupResponseProps, ResolutionResult, ThirdPartyAPIEntryProps } from "../../types"; export declare const getPath: (path: string, base: string) => string; interface EntityLookupProps { query: string; offset?: string; limit?: string; endpoint: string; apiHeader?: string; apiKey?: string; path: string; } interface ResolveAddressIdentityByEndpointProps { name: string; source: string; [key: string]: string; } export declare const entityLookup: ({ limit, offset, query, endpoint, apiHeader, apiKey, path, }: EntityLookupProps) => Promise; export declare const resolveAddressIdentityByEndpoint: (url: string, apiHeader: string, apiKey: string) => Promise; export declare const getIdentity: (addresses: ThirdPartyAPIEntryProps[], address: string) => Promise; interface FeatureResponse { features: { addressResolution?: { location: string; }; entityLookup?: { location: string; }; }; version: number; } export declare const getFeatures: (url: string, apiHeader?: string | undefined, apiKey?: string | undefined) => Promise; export {};