/** * replace mat with another map * * replace value one by one without clearing destination * * @param destination * @param source * @constructor */ export declare function ReplaceParameters(destination: Map, source: Map): Map; /** * replace mat with another map * * replace value one by one without clearing destination * * @param destination * @param source * @constructor */ export declare function ReplaceParameter({ destination, source, }: { destination: Map; source: Map; }): Map; declare namespace Replace { const Parameters: typeof ReplaceParameters; const Parameter: typeof ReplaceParameter; } export default Replace; //# sourceMappingURL=replace.d.ts.map