import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Flex = "ax-flex"; type FlexProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Flex]: FlexProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof FlexProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Flex]: FlexProps & Omit<(ComponentPropsWithoutRef<"div">), keyof FlexProps>; } } } export { Flex }; export type { FlexProps };