/// <reference types="react" />
export default function Divider({prefixCls, type, className, children, ...restProps}: {
    [x: string]: any;
    prefixCls?: string;
    type?: string;
    className: any;
    children: any;
}): JSX.Element;
