import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Tabs = "ax-tabs"; type TabsProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "dir"?: "ltr" | "rtl"; "defaultValue"?: string; "default-value"?: string; "onValueChange"?: (value: string) => void; "value"?: string; "orientation"?: "horizontal" | "vertical"; "activationMode"?: "automatic" | "manual"; "activation-mode"?: "automatic" | "manual"; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Tabs]: TabsProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof TabsProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Tabs]: TabsProps & Omit<(ComponentPropsWithoutRef<"div">), keyof TabsProps>; } } } export { Tabs }; export type { TabsProps };