import type * as React from 'react'; import type { BaseUIComponentProps, Orientation } from "../../internals/types.mjs"; export interface ComboboxSeparatorProps extends BaseUIComponentProps<'div', ComboboxSeparatorState> { /** * The orientation of the separator. * @default 'horizontal' */ orientation?: Orientation | undefined; } export interface ComboboxSeparatorState { /** * The orientation of the separator. */ orientation: Orientation; } /** * A visual separator between items or groups. * Renders a `