import { Type } from "@tsed/core"; import { JsonMapperMethods } from "../interfaces/JsonMapperMethods.js"; /** * Register a mapper class for a specific primitive/complex type so it can be reused by the serializers. */ export declare function registerJsonTypeMapper(type: Type | Symbol | string, token: Type): void; /** * Retrieve the registry of custom JSON mapper instances keyed by the types they support. */ export declare function getJsonMapperTypes(): Map | Symbol | string, JsonMapperMethods>;