export interface SeparatorProps extends React.HTMLAttributes {
/**
* The orientation of the separator.
* @default "horizontal"
*/
orientation?: 'horizontal' | 'vertical';
/**
* Additional CSS class names.
*/
className?: string;
}
export declare function Separator({ orientation, className, ...props }: SeparatorProps): import("react/jsx-runtime").JSX.Element;