import React from 'react'; import { BoxProps } from '../Box'; type VerticalDividerProps = React.HTMLAttributes & BoxProps; export default function VerticalDivider(props: VerticalDividerProps): JSX.Element; export {};