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