import * as react from 'react';
import { HTMLAttributes } from 'react';
interface DividerProps extends HTMLAttributes {
/** Layout direction */
orientation?: 'horizontal' | 'vertical';
/** Optional label rendered inline (horizontal orientation only) */
label?: React.ReactNode;
}
declare const Divider: react.ForwardRefExoticComponent>;
export { Divider, type DividerProps };