import { default as React } from 'react'; export interface SeparatorProps { /** Separator orientation */ orientation?: 'horizontal' | 'vertical'; /** Spacing around separator */ spacing?: 'none' | 'sm' | 'md' | 'lg'; /** Line thickness */ thickness?: 'thin' | 'medium' | 'thick'; /** Additional className */ className?: string; } /** * Separator Component * * Simple horizontal or vertical line separator. * Use for visual separation in menus, lists, and layouts. * * @example * ```tsx *