import React$1 from 'react'; interface DividerProps extends React.HTMLAttributes { variant?: 'full' | 'start' | 'center' | 'end'; orientation?: 'horizontal' | 'vertical'; align?: 'start' | 'center' | 'end'; color?: string; size?: `${string}px` | `${string}rem`; round?: boolean; } declare const Divider: React$1.ForwardRefExoticComponent>; export { type DividerProps, Divider as default };