import React from 'react'; import { DividerProps as AntDividerProps } from 'antd'; export declare type DividerProps = { space?: number; color?: string; } & AntDividerProps; declare const Divider: React.FC; export default Divider;