import * as React from 'react'; import type { BaseUIComponentProps, Orientation } from '../utils/types.js'; /** * A separator element accessible to screen readers. * Renders a `
` element. * * Documentation: [Base UI Separator](https://base-ui.com/react/components/separator) */ declare const Separator: React.ForwardRefExoticComponent>; declare namespace Separator { interface Props extends BaseUIComponentProps<'div', State> { /** * The orientation of the separator. * @default 'horizontal' */ orientation?: Orientation; } interface State { /** * The orientation of the separator. */ orientation: Orientation; } } export { Separator };