import * as React from 'react'; import { Separator as Separator$1 } from '@base-ui/react/separator'; type SeparatorProps = Separator$1.Props & { /** * When true, the separator is purely presentational and is hidden from * assistive tech by setting `role="none"`. Defaults to `false`, in which * case Base UI's default `role="separator"` is left intact so AT users * hear it as a region boundary. */ decorative?: boolean; }; declare function Separator({ className, orientation, decorative, role, ref, ...props }: SeparatorProps): React.JSX.Element; export { Separator, type SeparatorProps };