import { ObjectModifierStrategy, ObjectModifierType } from '../types/mod.types';
export declare function applyObjectModification(content: Record<string, any>, action: ObjectModifierType): Record<string, any>;
export declare function modifyObject(content: Record<string, any>, modifier: Record<string, any>, strategy: ObjectModifierStrategy): Record<string, any>;
