/** * AI CONTEXT: * ┌─────────────────────────────────────────────┐ * │ Component: Separator │ * │ orientation = "horizontal"(default)|"vertical" │ * │ decorative = boolean (default: true) │ * │ CSS class: .vyre-separator │ * └─────────────────────────────────────────────┘ */ import React from "react"; export interface SeparatorProps { orientation?: "horizontal" | "vertical"; decorative?: boolean; className?: string; } export declare const Separator: React.ForwardRefExoticComponent>;