///
/**
* Draws a horizontal line, no text, very simple.
* Pure presentational component. Line is drawn using
* the border. Pass in style props to modify style.
*/
import * as React from "react";
export interface Props extends React.DetailedHTMLProps, HTMLDivElement> {
}
export declare function VerticalSeparator({className, style, ...rest}: Props): JSX.Element | null;
export default VerticalSeparator;