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