export declare function cleanJson(json: {
    [k: string]: any;
}, targetFields: string[]): {
    [k: string]: any;
};
