export declare function Separator({ orientation, decorative, className }: {
    orientation: "horizontal" | "vertical";
    decorative?: boolean;
    className?: string;
}): import("react/jsx-runtime").JSX.Element;
