import * as react from 'react'; interface SeparatorProps { /** Separator direction */ orientation?: "horizontal" | "vertical"; /** Optional centered label text */ label?: string; /** Additional CSS classes */ className?: string; } declare const Separator: react.ForwardRefExoticComponent>; export { Separator, type SeparatorProps };