/// import type { DividerProps } from "./Divider.types"; /** * A Divider is used to separate content into distinct sections. * It must be used in elements that are direct children of a container. * It is not intended to be used as a border. * * @param orientation * @constructor */ declare function Divider({ orientation, ...rest }: DividerProps): JSX.Element; declare namespace Divider { var displayName: string; var defaultProps: { orientation: string; }; } export { Divider };