/** * Before version 19, react JSX treats empty string "" as truthy for inert prop. * @see {@link https://stackoverflow.com/questions/72720469} * @see {@link https://github.com/facebook/react/issues/17157} * */ declare const isInert: (x: boolean) => boolean; export default isInert;