/** * The `` component is a wrapper that adds a top border * and spacing to divide sections of content. It can a also be * used without children `` to provide a horizontal * rule with correct spacing. */ export function Divider({ children, className }: { children: any; className: any; }): React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export namespace Divider { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';