import React from 'react'; import { BoxProps } from '../Box'; type HorizontalProps = {}; type VerticalProps = { vertical: boolean; height?: React.CSSProperties['height']; }; type OrientationProps = HorizontalProps | VerticalProps; type DividerProps = { margin?: React.CSSProperties['margin']; m?: React.CSSProperties['margin']; } & OrientationProps & React.HTMLProps & Omit; /** * Dividers separate content into clear groups. * * A Divider is a thin line that groups content in lists and layouts. */ export default function Divider(props: DividerProps): JSX.Element; export {};