/**
 * Central registry of tag mapping strategies used during TLV transformation.
 *
 * Each entry in the registry defines how a tag is interpreted for a specific region
 * (e.g., CO, GLOBAL, DEFAULT). Strategies are pure functions that receive a TLV entity
 * and return a structured object for output.
 */
import { TagMappingStrategy } from '../../types/tag-resolver.type';
/**
 * Exports the final registry used by mappers to determine
 * how to decode TLV tag values.
 */
export declare const TagMappingRegistryStrategy: Record<string, Record<"GLOBAL" | "CO" | "DEFAULT", TagMappingStrategy>>;
