/** * Copyright (c) 2019-2025 Mark Sandford * Licensed under the MIT License. See LICENSE and NOTICE files. */ import { type Logger } from './logger.js'; import { type CacheAdapter } from './cache.js'; /** * Configure the entity-resolution package with app-specific dependencies. * Call once at application startup before using any resolution functions. */ export declare function configure(options: { logger?: Logger; cache?: CacheAdapter; }): void; //# sourceMappingURL=configure.d.ts.map