import React$1 from 'react';

interface DividerProps extends React.HTMLAttributes<HTMLDivElement> {
    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<DividerProps & React$1.RefAttributes<HTMLDivElement>>;

export { type DividerProps, Divider as default };
