import React from 'react'; import { BoxProps } from '../Box'; export interface DividerProps extends BoxProps { /** The direction of the divider */ orientation?: 'horizontal' | 'vertical'; } /** * Extends Box. * * A Divider is a simple component that will render a line to separate content into two sections */ declare const Divider: React.FC; export default Divider;