import { default as React, ComponentPropsWithoutRef, JSX } from 'react'; export interface PolymorphicProps { /** * Use the provided child element as the default rendered element, combining their props and behavior. */ asChild?: boolean | undefined; } type JsxElements = { [E in keyof JSX.IntrinsicElements]: ArkForwardRefComponent; }; type ArkForwardRefComponent = React.ForwardRefExoticComponent>; type ArkPropsWithRef = React.ComponentPropsWithRef & PolymorphicProps; export type HTMLProps = ComponentPropsWithoutRef; export type HTMLArkProps = HTMLProps & PolymorphicProps; export declare const jsxFactory: () => JsxElements; export declare const ark: JsxElements; export {};