import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { a as ResponsiveArray, R as ResponsiveObject } from '../types-B4RnVKcG.js'; import { BoxProps } from './Box.js'; declare const NavSeparator = "ax-nav-separator"; type NavSeparatorProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "orientation"?: "horizontal" | "vertical" | ResponsiveArray<"horizontal" | "vertical"> | ResponsiveObject<"horizontal" | "vertical">; "decorative"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [NavSeparator]: NavSeparatorProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof NavSeparatorProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [NavSeparator]: NavSeparatorProps & Omit<(ComponentPropsWithoutRef<"div">), keyof NavSeparatorProps>; } } } export { NavSeparator }; export type { NavSeparatorProps };