import React from 'react'; export declare function logReactVersion(react: { version: string; }): void; /** * Converts a false value for `hidden` to `undefined` so it doesn't get rendered in the DOM * * There is an open issue where lit/react passes the false value to the element in the dom * this isn't valid per the spec for boolean attributes. * * We mostly work around it with CSS, but it's still causing some problems with the modal overlay * REMOVE THIS WHEN THE FOLLOWING ISSUE IS RESOLVED (also remove all of the CSS fixes) * * https://github.com/lit/lit/issues/3053 * @param Component * @returns Component */ export declare function removeFalseHiddenProp

(Component: React.ComponentType

): (props: P) => JSX.Element;