;
type ReactJSXIntrinsicElements = JSX.IntrinsicElements;
export declare namespace CompiledJSX {
type ElementType = ReactJSXElementType;
type Element = ReactJSXElement;
type ElementClass = ReactJSXElementClass;
type ElementAttributesProperty = ReactJSXElementAttributesProperty;
type ElementChildrenAttribute = ReactJSXElementChildrenAttribute;
type LibraryManagedAttributes<_C, P> = WithConditionalCSSProp & P & {
key?: React.Key;
};
type IntrinsicAttributes = ReactJSXIntrinsicAttributes;
type IntrinsicClassAttributes = ReactJSXIntrinsicClassAttributes;
type IntrinsicElements = {
[K in keyof ReactJSXIntrinsicElements]: Omit & {
/**
* The class name prop now can be given the output of xcss prop from `@compiled/react`.
*/
className?: string | Record | null | false;
css?: CssFunction | CssFunction[];
};
};
}
export {};