export declare function removeKeysWithSubstrings(obj: {
    [key: string]: any;
}, substrings: string[]): {
    [key: string]: any;
};
export default removeKeysWithSubstrings;
