import type React from 'react'; type WithDirectives = { 'v-if'?: boolean; 'v-show'?: boolean; }; type MergeDirectives
= P & WithDirectives;
export namespace CJSX {
type Element = React.JSX.Element;
type ElementClass = React.JSX.ElementClass;
type ElementAttributesProperty = React.JSX.ElementAttributesProperty;
type ElementChildrenAttribute = React.JSX.ElementChildrenAttribute;
type ElementType = React.JSX.ElementType;
type LibraryManagedAttributes