import * as React from "react"; import type { MergeElementProps } from "../typings"; interface DividerBaseProps { /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * If `true`, the divider will have spaces around it. * @default false */ spaced?: boolean; /** * If `true`, the divider will be rendered as 3-dots instead of a straight line. * * You can't use `dotted` along with `vertical`! * @default false */ dotted?: boolean; /** * If `true`, the divider will be vertical. * * It only works in flexboxes! * (the parent should be a flexbox and the divider itself has to be a flex-item) * @default false */ vertical?: boolean; } export declare type DividerProps = MergeElementProps; declare type Component = { (props: DividerProps): JSX.Element; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const Divider: Component; export default Divider;