import * as React from "react"; import * as SeparatorPrimitive from "@radix-ui/react-separator"; export interface SeparatorProps extends React.ComponentPropsWithoutRef { orientation?: "horizontal" | "vertical"; decorative?: boolean; } declare const Separator: React.ForwardRefExoticComponent, "ref"> & SeparatorProps & React.RefAttributes>; export default Separator; //# sourceMappingURL=Separator.d.ts.map