export declare function removeUndefinedKeys(obj: {
    [x: string]: any;
}): {
    [x: string]: any;
};
