import * as react from 'react'; import { ReactNode } from 'react'; interface DividerProps { orientation?: "horizontal" | "vertical"; /** Inline label split-mode. Only meaningful for horizontal. */ label?: ReactNode; /** Indent the line from the edge. Pixels. */ inset?: number; /** Override the line color. Defaults to colors.stroke. */ color?: string; /** Line thickness in pixels. Default 1. */ thickness?: number; /** "dashed" or "solid". Default "solid". */ style?: "solid" | "dashed"; className?: string; } declare function Divider({ orientation, label, inset, color, thickness, style: variant, className, }: DividerProps): react.JSX.Element; export { Divider, type DividerProps };