import React from 'react'; export type DividerOrientation = 'horizontal' | 'vertical'; export type DividerVariant = 'default' | 'subtle' | 'static'; export type DividerSize = 'md' | 'lg' | 'xl'; export type DividerProps = { orientation?: DividerOrientation; variant?: DividerVariant; size?: DividerSize; length?: number | string; className?: string; style?: React.CSSProperties; rounded?: boolean; } & React.HTMLAttributes; export declare const Divider: ({ orientation, variant, size, length, className, style, rounded, ...rest }: DividerProps) => import("react/jsx-runtime").JSX.Element;