/** * Separator - a thin divider rule. Pure-visual/CSS primitive (no engine needed): * decorative by default (`role="none"`, hidden from a11y); pass `decorative={false}` * for a semantic `role="separator"` with `aria-orientation`. * * @module react/components/ui/separator */ import * as React from "react"; /** Props accepted by ``. */ export interface SeparatorProps extends React.HTMLAttributes { /** Rule direction. @default "horizontal" */ orientation?: "horizontal" | "vertical"; /** Decorative (hidden from a11y). Set `false` for a semantic `role="separator"`. @default true */ decorative?: boolean; /** React 19: ref is a regular prop. */ ref?: React.Ref; } /** A horizontal (default) or vertical divider rule. */ export declare function Separator({ className, orientation, decorative, ref, ...props }: SeparatorProps): React.ReactElement; //# sourceMappingURL=separator.d.ts.map