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