import { FC, HTMLAttributes } from 'react';
export interface SeparatorProps extends HTMLAttributes {
/**
* Custom class name applied to the separator element.
* Useful for styling, theming, or scoped design tokens.
*/
className?: string;
/**
* Defines the orientation of the separator.
*
* - 'horizontal': Divider between blocks (default)
* - 'vertical': Divider between inline elements or columns
*/
orientation?: 'horizontal' | 'vertical';
}
/** A Separator is a UI component used to visually divide content into distinct sections, often represented as a line or space to enhance clarity and organization in layouts */
export declare const Separator: FC;