import { SourceTargetMap } from "./SourceTargetMap"; /** * @class Mapper * * Supports mapping to and from target and source objects. * * Each instance will keep track of its mappings and will not care about another instances. */ export declare class ObjektMapper { private readonly maps; map(key: string, source: Source): Target; createMap(key: string, mapping: SourceTargetMap): void; } export default ObjektMapper;