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