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) */ export declare const Separator: React.ForwardRefExoticComponent & React.RefAttributes>; export interface SeparatorProps extends BaseUIComponentProps<'div', Separator.State> { /** * The orientation of the separator. * @default 'horizontal' */ orientation?: Orientation; } export interface SeparatorState { /** * The orientation of the separator. */ orientation: Orientation; } export declare namespace Separator { type Props = SeparatorProps; type State = SeparatorState; }