export interface RecordsValidatorConfig { packageCachePath?: string; /** * Directory holding bundled-profile FHIR packages. When omitted, the * SDLoader resolves the path relative to its own source location * (`/storage/profiles/bundled`), which works both for * monorepo workspace dev (the path is a symlink to the in-tree copy) * and for an installed npm package (the bundled dir ships inside). * `RECORDS_BUNDLED_PROFILES_PATH` (env) overrides when set. */ bundledProfilesPath?: string | null; enableCaching?: boolean; strictMode?: boolean; timeout?: number; autoDownload?: boolean; allowedPackages?: string[]; packageVersionPins?: Record; profileCacheMaxEntries?: number; } export declare function resolveRecordsValidatorConfig(config: RecordsValidatorConfig): RecordsValidatorConfig; //# sourceMappingURL=validator-engine-config.d.ts.map