export declare function merge(target: {
    [key: string]: any;
}, source: {
    [key: string]: any;
}, copy?: boolean): {
    [key: string]: any;
};
export declare function copy(source: {
    [key: string]: any;
}): {
    [key: string]: any;
};
