import React from 'react'; import './index.less'; interface DividerProps { type?: 'horizontal' | 'vertical'; } declare type Divider = DividerProps & Size; declare const Divider: React.SFC; export default Divider;