import { ComponentProps } from 'react'; import { Orientation } from '../../generated.js'; export type SeparatorProps = Omit, "aria-orientation" | "role"> & { bleed?: boolean; orientation?: Orientation; }; export declare function Separator({ bleed, className, orientation, ...props }: SeparatorProps): import("react").JSX.Element;