/** * Performs a key comparison between two objects, deleting from the first where * the keys exist in the second. * * Can be used to remove unwanted component prop values before passing the rest * to a DOM element. For example, `` strips its own props and forwards * the remainder: * * ```tsx * const passProps = objectKeyFilter( * remaining as Record, * knownMomentPropKeys * ); * return React.createElement(tag, passProps, content); * ``` */ export declare function objectKeyFilter>(obj1: T, obj2: Record): Partial;